DefinitelyTyped/types/nodegit/proxy-options.d.ts
2017-06-09 01:33:54 +01:00

45 lines
654 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
}