UNPKG

557 BJavaScriptView Raw
1/**
2 * Copyright (c) Facebook, Inc. and its 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
13declare var __DEV__: boolean;
14
15declare var __REACT_DEVTOOLS_GLOBAL_HOOK__: any; /*?{
16 inject: ?((stuff: Object) => void)
17};*/
18
19declare var fetch: any;
20declare var Headers: any;
21declare var Request: any;
22declare var Response: any;
23declare module requestAnimationFrame {
24 declare module.exports: (callback: any) => any;
25}