-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathglobal.d.ts
More file actions
23 lines (20 loc) · 556 Bytes
/
Copy pathglobal.d.ts
File metadata and controls
23 lines (20 loc) · 556 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
declare module '*.png' {
import { ImageSourcePropType } from 'react-native'
const value: ImageSourcePropType
export default value
}
declare module '*.jpg' {
import { ImageSourcePropType } from 'react-native'
const value: ImageSourcePropType
export default value
}
declare module '*.jpeg' {
import { ImageSourcePropType } from 'react-native'
const value: ImageSourcePropType
export default value
}
declare module '*.gif' {
import { ImageSourcePropType } from 'react-native'
const value: ImageSourcePropType
export default value
}