UNPKG

792 BJavaScriptView Raw
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 * @format
8 * @flow strict
9 */
10
11'use strict';
12
13// NOTE: Hmm... I don't think declaring variables within this module actually
14// accomplishes anything besides documenting that these globals are expected to
15// exist. So I think the correct "fix" to this lint warning is to delete this
16// entire file. But in lieu of doing that... no harm for now in keeping this
17// file around, even if it is only for documentation purposes. ¯\_(ツ)_/¯
18
19/* eslint-disable no-unused-vars */
20
21declare var __DEV__: boolean;
22
23declare var __REACT_DEVTOOLS_GLOBAL_HOOK__: any; /*?{
24 inject: ?((stuff: Object) => void)
25};*/