mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
cleanup
This commit is contained in:
+5
@@ -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);
|
||||
}
|
||||
+11
@@ -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;
|
||||
+5
@@ -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);
|
||||
}
|
||||
+11
@@ -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;
|
||||
+5
@@ -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);
|
||||
}
|
||||
+11
@@ -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;
|
||||
Generated
Vendored
+5
@@ -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);
|
||||
}
|
||||
Generated
Vendored
+11
@@ -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;
|
||||
Reference in New Issue
Block a user