UNPKG

expo

Version:
14 lines (10 loc) 276 B
// @flow import { NativeModules } from 'react-native'; type GetDocumentOptions = { type?: string, }; export async function getDocumentAsync( { type = '*/*' }: GetDocumentOptions = {} ) { return await NativeModules.ExponentDocumentPicker.getDocumentAsync({ type }); }