Summary: _typescript_ Reviewed By: danielbuechele Differential Revision: D16782045 fbshipit-source-id: cfbabc036eb707f76a375f451ccc831b25c6d462
15 lines
348 B
TypeScript
15 lines
348 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;
|
|
electronRequire: (name: string) => void;
|
|
window: Window | undefined;
|
|
}
|
|
}
|