create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
24 lines (21 loc) • 562 B
text/typescript
import { ExponentFileSystemModule } from './FileSystem.types';
const platformModule: ExponentFileSystemModule = {
get name(): 'ExponentFileSystem' {
return 'ExponentFileSystem';
},
get documentDirectory(): string | null {
return null;
},
get cacheDirectory(): string | null {
return null;
},
get bundledAssets(): string | null {
return null;
},
get bundleDirectory(): string | null {
return null;
},
addListener(eventName: string): void {},
removeListeners(count: number): void {},
};
export default platformModule;