We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f575c commit 1ee5d06Copy full SHA for 1ee5d06
src/firefox/index.js
@@ -50,7 +50,9 @@ export type FirefoxRunnerParams = {|
50
'listen': number,
51
'binary-args'?: Array<string> | string,
52
'env'?: {
53
- [key: string]: string
+ // This match the flowtype signature for process.env (and prevent flow
54
+ // from complaining about differences between their type signature)
55
+ [key: string]: string | void
56
},
57
'verbose'?: boolean,
58
|};
0 commit comments