mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
333755367f
Summary: This declares a few globals that were missing in our `global.js` Flow declaration file: * `process` * `performance` with its current definition. We'll replace it with the new API when we replace `setupPerformance` with `setupWebPerformance`. * `navigator` * `setImmediate` * `clearImmediate` Eventually we should stop including all DOM definitions that Flow provides out of the box and define only what we provide (which is pretty much this file). Changelog: [Internal] Reviewed By: christophpurrer Differential Revision: D42964772 fbshipit-source-id: 6156968e8a9d193e7068d8a5043aa682ad45bba1
18 lines
567 B
JavaScript
18 lines
567 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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
|
|
*/
|
|
|
|
import Performance from '../WebPerformance/Performance';
|
|
|
|
// TODO: Replace setUpPerformance with this once the WebPerformance API is stable (T143070419)
|
|
export default function setUpPerformance() {
|
|
// $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
|
|
global.performance = new Performance();
|
|
}
|