Summary: _typescript_ Reviewed By: passy Differential Revision: D16962733 fbshipit-source-id: 6583c5a4471b12f91895f6449ed9c510265a63e2
18 lines
409 B
TypeScript
18 lines
409 B
TypeScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
|
|
declare module NodeJS {
|
|
interface Global {
|
|
__REVISION__: string | undefined;
|
|
__VERSION__: string;
|
|
electronRequire: (name: string) => void;
|
|
window: Window | undefined;
|
|
WebSocket: any;
|
|
fetch: any;
|
|
}
|
|
}
|