2015-03-18 17:40:49 -07:00
|
|
|
/**
|
2015-03-23 13:35:08 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-03-18 17:40:49 -07:00
|
|
|
*
|
|
|
|
* @flow
|
|
|
|
*/
|
2015-02-19 20:10:52 -08:00
|
|
|
|
2015-03-18 17:40:49 -07:00
|
|
|
// see also react-native.js
|
2015-02-19 20:10:52 -08:00
|
|
|
|
|
|
|
declare var __DEV__: boolean;
|
2015-03-25 17:49:46 -07:00
|
|
|
|
|
|
|
declare var __REACT_DEVTOOLS_GLOBAL_HOOK__: any; /*?{
|
|
|
|
inject: ?((stuff: Object) => void)
|
|
|
|
};*/
|
2015-05-07 12:29:36 -07:00
|
|
|
|
|
|
|
declare var fetch: any;
|
|
|
|
declare var Headers: any;
|
|
|
|
declare var Request: any;
|
|
|
|
declare var Response: any;
|
2015-07-22 18:09:55 -07:00
|
|
|
declare module requestAnimationFrame {
|
|
|
|
declare var exports: (callback: any) => any;
|
|
|
|
}
|