Document LaunchOptions.dumpio

Part of #1041
This commit is contained in:
Daniel Imms 2020-02-18 07:52:53 -08:00
parent 010c27410a
commit 494631f4b7

View file

@ -34,6 +34,10 @@ export type LaunchOptions = BrowserArgOptions & {
handleSIGTERM?: boolean,
handleSIGHUP?: boolean,
timeout?: number,
/**
* Whether to dump stdio of the browser, this is useful for example when
* diagnosing browser launch issues.
*/
dumpio?: boolean,
env?: {[key: string]: string} | undefined
};