UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
23 lines (22 loc) 383 B
/** * 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; }