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

5 lines (4 loc) 371 B
import { CameraOptions, ImageLibraryOptions, Callback } from './types'; export * from './types'; export declare function launchCamera(options: CameraOptions, callback?: Callback): Promise<import("./types").ImagePickerResponse>; export declare function launchImageLibrary(options: ImageLibraryOptions, callback?: Callback): Promise<import("./types").ImagePickerResponse>;