microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
23 lines (22 loc) • 383 B
TypeScript
/**
* The result type enum
*/
export declare enum ResultType {
Auto = "Auto",
StableFragment = "StableFragment",
Hypothesis = "Hypothesis",
None = "None"
}
/**
* The interim results
*/
export interface InterimResults {
/**
* The result type
*/
resultType?: ResultType;
/**
* The stable threshold
*/
stableThreshold?: number;
}