This commit is contained in:
2019-09-17 13:20:42 -04:00
parent d211d1dc34
commit bef10ce4c9
8352 changed files with 568242 additions and 51 deletions
@@ -0,0 +1,5 @@
import ifm = require('../interfaces/common/VsoBaseInterfaces');
import * as resthandlers from 'typed-rest-client/Handlers';
export declare class BasicCredentialHandler extends resthandlers.BasicCredentialHandler implements ifm.IRequestHandler {
constructor(username: string, password: string);
}
@@ -0,0 +1,11 @@
"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;
@@ -0,0 +1,5 @@
import ifm = require('../interfaces/common/VsoBaseInterfaces');
import * as resthandlers from 'typed-rest-client/Handlers';
export declare class BearerCredentialHandler extends resthandlers.BearerCredentialHandler implements ifm.IRequestHandler {
constructor(token: string);
}
@@ -0,0 +1,11 @@
"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;
@@ -0,0 +1,5 @@
import ifm = require('../interfaces/common/VsoBaseInterfaces');
import * as resthandlers from 'typed-rest-client/Handlers';
export declare class NtlmCredentialHandler extends resthandlers.NtlmCredentialHandler implements ifm.IRequestHandler {
constructor(username: string, password: string, workstation?: string, domain?: string);
}
@@ -0,0 +1,11 @@
"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 NtlmCredentialHandler extends resthandlers.NtlmCredentialHandler {
constructor(username, password, workstation, domain) {
super(username, password, workstation, domain);
}
}
exports.NtlmCredentialHandler = NtlmCredentialHandler;
@@ -0,0 +1,5 @@
import ifm = require('../interfaces/common/VsoBaseInterfaces');
import * as resthandlers from 'typed-rest-client/Handlers';
export declare class PersonalAccessTokenCredentialHandler extends resthandlers.PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler {
constructor(token: string);
}
@@ -0,0 +1,11 @@
"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 PersonalAccessTokenCredentialHandler extends resthandlers.PersonalAccessTokenCredentialHandler {
constructor(token) {
super(token);
}
}
exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler;