UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
17 lines (16 loc) 274 B
/** * The action to take on success */ export declare enum NextAction { None = "None", Synthesize = "Synthesize" } /** * The on success configuration */ export interface OnSuccess { /** * The action to take on success */ action?: NextAction; }