microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
21 lines (20 loc) • 330 B
TypeScript
/**
* Result type
*/
export declare enum Mode {
None = "None",
Always = "Always"
}
/**
* Interim results
*/
export interface InterimResults {
/**
* The mode for interim results
*/
mode?: Mode;
/**
* If true, intermediate results only contain stable parts
*/
stableOnly?: boolean;
}