Interface SpeechSynthesisUtterance

This Web Speech API interface represents a speech request. It contains the content the speech service should read and information about how to read it (e.g. language, pitch and volume.)

MDN Reference

Hierarchy

  • EventTarget
    • SpeechSynthesisUtterance

Properties

lang: string
onboundary: null | ((this, ev) => any)

Type declaration

onend: null | ((this, ev) => any)

Type declaration

onerror: null | ((this, ev) => any)

Type declaration

onmark: null | ((this, ev) => any)

Type declaration

onpause: null | ((this, ev) => any)

Type declaration

onresume: null | ((this, ev) => any)

Type declaration

onstart: null | ((this, ev) => any)

Type declaration

pitch: number
rate: number
text: string
voice: null | SpeechSynthesisVoice
volume: number

Methods

  • Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

    MDN Reference

    Parameters

    • event: Event

    Returns boolean

Generated using TypeDoc