mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
45 lines
654 B
TypeScript
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
|
|
}
|