interface.js 557 B

12345678910111213141516171819202122232425
  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. 'use strict';
  11. declare var __DEV__: boolean;
  12. declare var __REACT_DEVTOOLS_GLOBAL_HOOK__: any; /*?{
  13. inject: ?((stuff: Object) => void)
  14. };*/
  15. declare var fetch: any;
  16. declare var Headers: any;
  17. declare var Request: any;
  18. declare var Response: any;
  19. declare module requestAnimationFrame {
  20. declare module.exports: (callback: any) => any;
  21. }