Make dispatcher/plugins strict

Summary: _typescript_

Reviewed By: jknoxville

Differential Revision: D17258265

fbshipit-source-id: 875d434120422c782074d4c345f765684533e399
This commit is contained in:
Pascal Hartig
2019-09-09 10:22:39 -07:00
committed by Facebook Github Bot
parent c506cc57b1
commit 71bb121ab8
2 changed files with 14 additions and 11 deletions

View File

@@ -9,7 +9,7 @@ declare module NodeJS {
interface Global {
__REVISION__: string | undefined;
__VERSION__: string;
electronRequire: (name: string) => void;
electronRequire: (name: string) => any;
window: Window | undefined;
WebSocket: any;
fetch: any;