azure-devops-node-api
Version:
Node client for Azure DevOps and TFS REST APIs
13 lines (12 loc) • 592 B
JavaScript
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
Object.defineProperty(exports, "__esModule", { value: true });
exports.BearerCredentialHandler = void 0;
const resthandlers = require("typed-rest-client/Handlers");
class BearerCredentialHandler extends resthandlers.BearerCredentialHandler {
constructor(token, allowCrossOriginAuthentication = true) {
super(token, allowCrossOriginAuthentication);
}
}
exports.BearerCredentialHandler = BearerCredentialHandler;
;