Add missing property boolean selfHandleResponse

Add missing boolean property `selfHandleResponse` to ServerOptions interface
This commit is contained in:
Luis Stanley Jovel
2018-05-14 16:17:53 -06:00
committed by GitHub
parent 00bedbf8df
commit 7ebd1ec80e

View File

@@ -207,6 +207,8 @@ declare namespace Server {
headers?: {[header: string]: string};
/** Timeout (in milliseconds) when proxy receives no response from target. Default: 120000 (2 minutes) */
proxyTimeout?: number;
/** If set to true, none of the webOutgoing passes are called and it's your responsibility to appropriately return the response by listening and acting on the proxyRes event */
selfHandleResponse?: boolean;
}
}