UNPKG

react-native-android-gallery-picker

Version:
12 lines (11 loc) 352 B
interface PhotoPickerOptions { selectionLimit?: number; mediaType?: 'photo' | 'video' | 'mixed'; } interface PhotoPickerResult { uri: string; } export default class GalleryPicker { static pickMedia(options?: PhotoPickerOptions): Promise<PhotoPickerResult | PhotoPickerResult[]>; } export type { PhotoPickerOptions, PhotoPickerResult };