UNPKG

benbeartooth-react-native-image-keyboard

Version:
16 lines (13 loc) 389 B
import { NativeSyntheticEvent } from "react-native"; declare module "react-native" { type ImageChangeEventData = { uri: string; data: string; linkUri?: string | null; mime?: string | null; }; type ImageChangeEvent = NativeSyntheticEvent<ImageChangeEventData>; interface TextInputProps { onImageChange?: (event: ImageChangeEvent) => void; } }