Added documentation

This commit is contained in:
Dolan
2017-06-09 01:33:54 +01:00
parent edf46bc725
commit 21a5f52f75
16 changed files with 1038 additions and 14 deletions

View File

@@ -1,8 +1,44 @@
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
}