UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
13 lines (12 loc) 398 B
import { ResultReason, VoiceProfileResult } from "./Exports.js"; /** * Output format * @class VoiceProfilePhraseResult */ export declare class VoiceProfilePhraseResult extends VoiceProfileResult { private privPhrases; private privType; constructor(reason: ResultReason, statusText: string, type: string, phraseArray: string[]); get phrases(): string[]; get type(): string; }