microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
15 lines (14 loc) • 336 B
TypeScript
import { InterimResults } from "./InterimResults";
/**
* The translation output configuration
*/
export interface TranslationOutput {
/**
* Whether to include pass through results
*/
includePassThroughResults?: boolean;
/**
* The interim results configuration
*/
interimResults?: InterimResults;
}