microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
17 lines (16 loc) • 311 B
TypeScript
/**
* 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;
}