Interface AvailabilityChangedEvent

Event emitted when a TTS instance's availability changes.

interface AvailabilityChangedEvent {
    available: boolean;
    tts: tts.TTS;
}

Properties

Properties

available: boolean

Whether the TTS instance is now available.

tts: tts.TTS

The TTS instance whose availability changed.