@euirim/microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
20 lines (18 loc) • 528 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
/**
* Define Speech Recognizer output formats.
* @class OutputFormat
*/
export var OutputFormat;
(function (OutputFormat) {
/**
* @member OutputFormat.Simple
*/
OutputFormat[OutputFormat["Simple"] = 0] = "Simple";
/**
* @member OutputFormat.Detailed
*/
OutputFormat[OutputFormat["Detailed"] = 1] = "Detailed";
})(OutputFormat || (OutputFormat = {}));
//# sourceMappingURL=OutputFormat.js.map