-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeclarations.d.ts
More file actions
executable file
·40 lines (33 loc) · 862 Bytes
/
declarations.d.ts
File metadata and controls
executable file
·40 lines (33 loc) · 862 Bytes
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
declare module 'react-native-vector-icons' {
export const createIconSet: any;
}
interface iPili {
Streaming: any;
AudioStreaming: any;
Player: any;
StreamingConst: any;
}
declare module 'react-native-pili' {
const Pili: iPili;
export default Pili;
}
declare module 'react-native-vector-icons/Ionicons' {
const Ionicons: any;
export default Ionicons;
}
declare module 'react-native-vector-icons/FontAwesome' {
const FontAwesome: any;
export default FontAwesome;
}
declare module 'react-native-vector-icons/Foundation' {
const Foundation: any;
export default Foundation;
}
declare module 'react-native-vector-icons/MaterialIcons' {
const MaterialIcons: any;
export default MaterialIcons;
}
declare module 'react-native-vector-icons/Zocial' {
const Zocial: any;
export default Zocial;
}