tsbase
    Preparing search index...

    Interface ISpeechRecognizer

    Provides an interface for listening to and interacting with user speech

    interface ISpeechRecognizer {
        HandleSpeechCommands(
            commands: ISpeechCommand[],
            until: () => boolean,
        ): Promise<void>;
        Listen(): Promise<string>;
    }

    Implemented by

    Index

    Methods