microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
17 lines (16 loc) • 333 B
TypeScript
/**
* The action to take on successful language detection
*/
export declare enum NextAction {
Recognize = "Recognize",
None = "None"
}
/**
* This type defines the OnSuccess configuration for LanguageDetection
*/
export interface OnSuccess {
/**
* The action to take on success
*/
action?: NextAction;
}