UNPKG

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