UNPKG

522 BJavaScriptView Raw
1import { NativeModules } from 'react-native';
2const { ExponentImagePicker } = NativeModules;
3const MEDIA_TYPE_OPTIONS = {
4 All: 'All',
5 Videos: 'Videos',
6 Images: 'Images',
7};
8export async function launchImageLibraryAsync(options = {}) {
9 return ExponentImagePicker.launchImageLibraryAsync(options);
10}
11export async function launchCameraAsync(options = {}) {
12 return ExponentImagePicker.launchCameraAsync(options);
13}
14export const MediaTypeOptions = MEDIA_TYPE_OPTIONS;
15//# sourceMappingURL=ImagePicker.js.map
\No newline at end of file