UNPKG

react-native-image-picker

Version:

A React Native module that allows you to use native UI to select media from the device library or directly from the camera

8 lines (7 loc) 321 B
import type { TurboModule } from 'react-native/Libraries/TurboModule/RCTExport'; export interface Spec extends TurboModule { launchCamera(options: Object, callback: () => void): void; launchImageLibrary(options: Object, callback: () => void): void; } declare const _default: Spec | null; export default _default;