mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
12 lines
479 B
JavaScript
12 lines
479 B
JavaScript
"use strict";
|
|
// 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 });
|
|
const resthandlers = require("typed-rest-client/Handlers");
|
|
class BearerCredentialHandler extends resthandlers.BearerCredentialHandler {
|
|
constructor(token) {
|
|
super(token);
|
|
}
|
|
}
|
|
exports.BearerCredentialHandler = BearerCredentialHandler;
|