Interface SpeechSynthesisVoice

    This Web Speech API interface represents a voice that the system supports. Every SpeechSynthesisVoice has its own relative speech service including information about language, name and URI.

    MDN Reference

    interface SpeechSynthesisVoice {
        default: boolean;
        lang: string;
        localService: boolean;
        name: string;
        voiceURI: string;
    }

    Properties

    default: boolean
    lang: string
    localService: boolean
    name: string
    voiceURI: string