UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
21 lines (19 loc) 530 B
"use strict"; // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthInfo = void 0; class AuthInfo { constructor(headerName, token) { this.privHeaderName = headerName; this.privToken = token; } get headerName() { return this.privHeaderName; } get token() { return this.privToken; } } exports.AuthInfo = AuthInfo; //# sourceMappingURL=IAuthentication.js.map