Merge pull request #19892 from bfeltman/master

Make all push-options optional
This commit is contained in:
Benjamin Lichtman
2017-09-20 11:44:05 -07:00
committed by GitHub

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;
}