microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
13 lines (12 loc) • 398 B
TypeScript
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;
}