mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8f7e23ae44
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/32095 Found by running `yarn run prettier` and including relevant files Changelog: [Internal] Fix formatting of `global.js` Reviewed By: cortinico Differential Revision: D30573273 fbshipit-source-id: 94854d3d3178533ad8a6323006eaca279a931fa7
69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
* @format
|
|
*/
|
|
|
|
/**
|
|
* `global` is a object containing all the global variables for React Native.
|
|
*
|
|
* NOTE: Consider cross-platform as well as JS environments compatibility
|
|
* when defining the types here. Consider both presence (`?`) as well as
|
|
* writeability (`+`) when defining types.
|
|
*/
|
|
declare var global: {
|
|
// setUpGlobals
|
|
+window: typeof global,
|
|
+self: typeof global,
|
|
|
|
// setXHR
|
|
+XMLHttpRequest: typeof XMLHttpRequest,
|
|
+FormData: typeof FormData,
|
|
+fetch: typeof fetch,
|
|
+Headers: typeof Headers,
|
|
+Request: typeof Request,
|
|
+Response: typeof Response,
|
|
+WebSocket: typeof WebSocket,
|
|
+Blob: typeof Blob,
|
|
+File: typeof File,
|
|
+FileReader: typeof FileReader,
|
|
+URL: typeof URL,
|
|
+URLSearchParams: typeof URLSearchParams,
|
|
+AbortController: typeof AbortController,
|
|
+AbortSignal: typeof AbortSignal,
|
|
|
|
// setUpAlert
|
|
+alert: typeof alert,
|
|
|
|
// setUpTimers
|
|
+clearInterval: typeof clearInterval,
|
|
+clearTimeout: typeof clearTimeout,
|
|
+setInterval: typeof setInterval,
|
|
+setTimeout: typeof setTimeout,
|
|
+requestAnimationFrame: typeof requestAnimationFrame,
|
|
+cancelAnimationFrame: typeof cancelAnimationFrame,
|
|
+requestIdleCallback: typeof requestIdleCallback,
|
|
+cancelIdleCallback: typeof cancelIdleCallback,
|
|
+setTimeout: typeof setTimeout,
|
|
// TODO(T97509743): use `typeof` when the next Flow release is available.
|
|
+queueMicrotask: <TArguments: Array<mixed>>(
|
|
jobCallback: (...args: TArguments) => mixed,
|
|
) => void,
|
|
|
|
+console: typeof console,
|
|
|
|
// JavaScript environments specific
|
|
+HermesInternal: ?$HermesInternalType,
|
|
|
|
// Internal-specific
|
|
+__DEV__?: boolean,
|
|
+RN$Bridgeless?: boolean,
|
|
|
|
// Undeclared properties are implicitly `any`.
|
|
[string | symbol]: any,
|
|
};
|