8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
import { ConfigPlugin } from 'expo/config-plugins';
|
|
type FileSystemProps = {
|
|
supportsOpeningDocumentsInPlace?: boolean;
|
|
enableFileSharing?: boolean;
|
|
};
|
|
declare const _default: ConfigPlugin<FileSystemProps>;
|
|
export default _default;
|