UNPKG

@euirim/microsoft-cognitiveservices-speech-sdk

Version:
20 lines (18 loc) 528 B
// 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