DefinitelyTyped/types/nodegit/proxy-options.d.ts
2017-06-10 02:42:46 +01:00

45 lines
660 B
TypeScript

export class ProxyOptions {
/**
*
*
* @type {Function}
* @memberof ProxyOptions
*/
certificateCheck?: Function;
/**
*
*
* @type {Function}
* @memberof ProxyOptions
*/
credentials?: Function;
/**
*
*
* @type {*}
* @memberof ProxyOptions
*/
payload?: any;
/**
*
*
* @type {number}
* @memberof ProxyOptions
*/
type?: number;
/**
*
*
* @type {string}
* @memberof ProxyOptions
*/
url?: string;
/**
*
*
* @type {number}
* @memberof ProxyOptions
*/
version?: number;
}