Interface SpeechSynthesisUtterance
lang: string;
onboundary:
| ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
| null;
onend:
| ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
| null;
onerror:
| (
(this: SpeechSynthesisUtterance, ev: SpeechSynthesisErrorEvent) => any
)
| null;
onmark:
| ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
| null;
onpause:
| ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
| null;
onresume:
| ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
| null;
onstart:
| ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
| null;
pitch: number;
rate: number;
text: string;
voice: SpeechSynthesisVoice | null;
volume: number;
addEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(
type: K,
listener: (
this: SpeechSynthesisUtterance,
ev: SpeechSynthesisUtteranceEventMap[K],
) => any,
options?: boolean | AddEventListenerOptions,
): void;
addEventListener(
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
): void;
dispatchEvent(event: Event): boolean;
removeEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(
type: K,
listener: (
this: SpeechSynthesisUtterance,
ev: SpeechSynthesisUtteranceEventMap[K],
) => any,
options?: boolean | EventListenerOptions,
): void;
removeEventListener(
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): void;
}
Hierarchy
- EventTarget
- SpeechSynthesisUtterance
Index
Properties
Methods
Properties
lang
The lang property of the SpeechSynthesisUtterance interface gets and sets the language of the utterance.
onboundary
onend
onerror
onmark
onpause
onresume
onstart
pitch
The pitch property of the SpeechSynthesisUtterance interface gets and sets the pitch at which the utterance will be spoken at.
rate
The rate property of the SpeechSynthesisUtterance interface gets and sets the speed at which the utterance will be spoken at.
text
The text property of the The text may be provided as plain text, or a well-formed SSML document.
voice
The voice property of the SpeechSynthesisUtterance interface gets and sets the voice that will be used to speak the utterance.
volume
The volume property of the SpeechSynthesisUtterance interface gets and sets the volume that the utterance will be spoken at.
Methods
addEventListener
- addEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(
type: K,
listener: (
this: SpeechSynthesisUtterance,
ev: SpeechSynthesisUtteranceEventMap[K],
) => any,
options?: boolean | AddEventListenerOptions,
): voidThe
addEventListener()method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.Type Parameters
- K extends keyof SpeechSynthesisUtteranceEventMap
Parameters
- type: K
- listener: (this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any
Optionaloptions: boolean | AddEventListenerOptions
Returns void
- addEventListener(
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
): voidThe
addEventListener()method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.Parameters
- type: string
- listener: EventListenerOrEventListenerObject
Optionaloptions: boolean | AddEventListenerOptions
Returns void
dispatchEvent
The
dispatchEvent()method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.Parameters
- event: Event
Returns boolean
removeEventListener
- removeEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(
type: K,
listener: (
this: SpeechSynthesisUtterance,
ev: SpeechSynthesisUtteranceEventMap[K],
) => any,
options?: boolean | EventListenerOptions,
): voidThe
removeEventListener()method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target.Type Parameters
- K extends keyof SpeechSynthesisUtteranceEventMap
Parameters
- type: K
- listener: (this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any
Optionaloptions: boolean | EventListenerOptions
Returns void
- removeEventListener(
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): voidThe
removeEventListener()method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target.Parameters
- type: string
- listener: EventListenerOrEventListenerObject
Optionaloptions: boolean | EventListenerOptions
Returns void
The
SpeechSynthesisUtteranceinterface of the Web Speech API represents a speech request.MDN Reference