microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
21 lines (19 loc) • 530 B
JavaScript
// 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
;