Files
bake/contrib/bake-vscode/node_modules/azure-devops-node-api/handlers/basiccreds.js
T
2019-09-17 13:20:42 -04:00

12 lines
501 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 BasicCredentialHandler extends resthandlers.BasicCredentialHandler {
constructor(username, password) {
super(username, password);
}
}
exports.BasicCredentialHandler = BasicCredentialHandler;