azure-devops-node-api
Version:
Node client for Azure DevOps and TFS REST APIs
12 lines (11 loc) • 539 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 });
const resthandlers = require("typed-rest-client/Handlers");
class NtlmCredentialHandler extends resthandlers.NtlmCredentialHandler {
constructor(username, password, workstation, domain) {
super(username, password, workstation, domain);
}
}
exports.NtlmCredentialHandler = NtlmCredentialHandler;
;