@sam17896/ngx-speech-recognition
Version:
Angular 5+ speech recognition service (based on browser implementation such as Chrome).
21 lines (20 loc) • 747 B
TypeScript
import { SpeechGrammarListType } from '../adapter';
export declare class SpeechRecognitionCommon {
protected _grammars: SpeechGrammarListType;
protected _lang: string;
protected _continuous: boolean;
protected _interimResults: boolean;
protected _maxAlternatives: number;
protected _serviceURI: string;
protected internal: SpeechRecognition;
constructor(_grammars: SpeechGrammarListType, _lang: string, _continuous: boolean, _interimResults: boolean, _maxAlternatives: number, _serviceURI: string);
/**
* Property
*/
grammars: SpeechGrammarListType;
lang: string;
continuous: boolean;
interimResults: boolean;
maxAlternatives: number;
serviceURI: string;
}