UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
17 lines (16 loc) 311 B
/** * The action enum when speech recognition return a final phrase result */ export declare enum NextAction { None = "None", Translate = "Translate" } /** * The on success configuration */ export interface OnSuccess { /** * The action to take on success */ action?: NextAction; }