Files
flipper/types/nodejs.tsx
Pascal Hartig 0f270c9f48 Migrate packageMetadata
Summary: _typescript_

Reviewed By: danielbuechele

Differential Revision: D16782045

fbshipit-source-id: cfbabc036eb707f76a375f451ccc831b25c6d462
2019-08-14 04:43:51 -07:00

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;
}
}