-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathflowdefs.js
64 lines (62 loc) · 1.65 KB
/
flowdefs.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// This file is to be able to supress errors thrown by flow from modules in
// node_modules. Until flow has a better way of handling this please ignore the
// file throwing the error in .flowconfig and add a coresponding declaration here
// @flow
declare module 'AnimatedImplementation' {
declare module.exports: any;
}
declare module 'react-native' {
declare module.exports: any;
}
declare module 'StyleSheetValidation' {
declare module.exports: any;
}
declare module 'ListView' {
declare module.exports: any;
}
declare module 'Slider' {
declare module.exports: any;
}
declare module 'MessageQueue' {
declare module.exports: any;
}
declare module 'react-navigation' {
declare module.exports: any;
}
declare module 'react-native-tab-view' {
declare module.exports: any;
}
declare module 'react-native-udp' {
declare module.exports: any;
}
declare module 'react-native-firebase' {
declare module.exports: any;
}
declare module 'react-native-swiper' {
declare module.exports: any;
}
declare module '../../local-cli/bundle/assetPathUtils' {
declare module.exports: any;
}
declare module 'react-native-color-wheel' {
declare module.exports: any;
}
declare module 'react-native-vector-icons/FontAwesome' {
declare module.exports: any;
}
declare module 'react-native-vector-icons/MaterialIcons' {
declare module.exports: any;
}
declare module 'react-native-vector-icons/MaterialCommunityIcons' {
declare module.exports: any;
}
declare module 'react-navigation-tabs' {
declare module.exports: any;
}
declare module 'redux-persist' {
declare module.exports: any;
}
declare module '@react-native-community/datetimepicker' {
declare module.exports: any;
}
declare var console: any;