Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SpeechSynthesisEvent

This Web Speech API interface contains information about the current state of SpeechSynthesisUtterance objects that have been processed in the speech service.

interface SpeechSynthesisEvent extends Event {
readonly charIndex: number;
readonly charLength: number;
readonly elapsedTime: number;
readonly name: string;
readonly utterance: SpeechSynthesisUtterance;
}
var SpeechSynthesisEvent: {
new (type: string, eventInitDict: SpeechSynthesisEventInit): SpeechSynthesisEvent;
}
;

§Extends

§Properties

§
readonly charIndex: number
[src]
§
readonly charLength: number
[src]
§
readonly elapsedTime: number
[src]
§
readonly name: string
[src]