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
4 lines (3 loc) • 320 B
TypeScript
import { CameraOptions, ImageLibraryOptions, Callback, ImagePickerResponse } from '../types';
export declare function camera(options: CameraOptions, callback?: Callback): Promise<ImagePickerResponse>;
export declare function imageLibrary(options: ImageLibraryOptions, callback?: Callback): Promise<ImagePickerResponse>;