microsoft-speech-browser-sdk
Version:
Microsoft Speech SDK for browsers
27 lines (25 loc) • 721 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var AuthInfo = /** @class */ (function () {
function AuthInfo(headerName, token) {
this.headerName = headerName;
this.token = token;
}
Object.defineProperty(AuthInfo.prototype, "HeaderName", {
get: function () {
return this.headerName;
},
enumerable: true,
configurable: true
});
Object.defineProperty(AuthInfo.prototype, "Token", {
get: function () {
return this.token;
},
enumerable: true,
configurable: true
});
return AuthInfo;
}());
exports.AuthInfo = AuthInfo;
//# sourceMappingURL=IAuthentication.js.map