forked from apollographql/react-apollo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
typings.d.ts
43 lines (37 loc) · 1 KB
/
typings.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
LODASH
*/
declare module 'lodash.isobject' {
import main = require('lodash/isObject');
export = main;
}
declare module 'lodash.isequal' {
import main = require('lodash/isEqual');
export = main;
}
declare module 'lodash.flatten' {
import main = require('lodash/flatten');
export = main;
}
declare module 'lodash.pick' {
import main = require('lodash/pick');
export = main;
}
declare module 'hoist-non-react-statics' {
/**
* Copies any static properties present on `source` to `target`, excluding those that are specific
* to React.
*
* Returns the target component.
*/
function hoistNonReactStatics(targetComponent: any, sourceComponent: any, customStatics: {[name: string]: boolean}): any;
namespace hoistNonReactStatics {}
export = hoistNonReactStatics;
}
declare module 'redux-loop' {
function combineReducers(reducers: any, state?: any, get?: any, set?: any): any;
function install(): any;
}
declare module 'react-test-renderer' {
function create(elements: any): any;
}