1 | "use strict";
|
2 |
|
3 |
|
4 | Object.defineProperty(exports, "__esModule", { value: true });
|
5 | exports.PersonalAccessTokenCredentialHandler = void 0;
|
6 | const resthandlers = require("typed-rest-client/Handlers");
|
7 | class PersonalAccessTokenCredentialHandler extends resthandlers.PersonalAccessTokenCredentialHandler {
|
8 | constructor(token, allowCrossOriginAuthentication = true) {
|
9 | super(token, allowCrossOriginAuthentication);
|
10 | }
|
11 | }
|
12 | exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler;
|