Make all push-options optional

This commit is contained in:
Brandon Feltman
2017-09-19 20:47:01 -06:00
parent b04ef81201
commit 6137f36dfd

View File

@@ -30,12 +30,12 @@ export interface PushOptions {
* @type {Strarray}
* @memberof PushOptions
*/
customHeaders: Strarray;
customHeaders?: Strarray;
/**
*
*
* @type {ProxyOptions}
* @memberof PushOptions
*/
proxyOpts: ProxyOptions;
proxyOpts?: ProxyOptions;
}