fixed linting errors

This commit is contained in:
Dolan
2017-06-10 02:42:46 +01:00
parent 8f535fe731
commit 0aaac09a44
6 changed files with 14 additions and 26 deletions

View File

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