UNPKG

276 BJavaScriptView Raw
1// @flow
2
3import { NativeModules } from 'react-native';
4
5type GetDocumentOptions = {
6 type?: string,
7};
8
9export async function getDocumentAsync(
10 { type = '*/*' }: GetDocumentOptions = {}
11) {
12 return await NativeModules.ExponentDocumentPicker.getDocumentAsync({ type });
13}