blob: ecd9d730abb90013d010e6d51640f2726acbc536 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import {
Image,
NativeSyntheticEvent,
ImageLoadEventData,
ImageSourcePropType,
} from 'react-native'
export default Image
export const HighPriorityImage = Image
export type OnLoadEvent = NativeSyntheticEvent<ImageLoadEventData>
export type Source = ImageSourcePropType
export type {ImageStyle} from 'react-native'
|