UNPKG

657 BJavaScriptView Raw
1"use strict";
2// Copyright (c) Microsoft. All rights reserved.
3// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4Object.defineProperty(exports, "__esModule", { value: true });
5exports.PersonalAccessTokenCredentialHandler = void 0;
6const resthandlers = require("typed-rest-client/Handlers");
7class PersonalAccessTokenCredentialHandler extends resthandlers.PersonalAccessTokenCredentialHandler {
8 constructor(token, allowCrossOriginAuthentication = true) {
9 super(token, allowCrossOriginAuthentication);
10 }
11}
12exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler;