1import { ExponentFileSystemModule } from './types';
2
3const platformModule: ExponentFileSystemModule = {
4  get name(): 'ExponentFileSystem' {
5    return 'ExponentFileSystem';
6  },
7  get documentDirectory(): string | null {
8    return null;
9  },
10  get cacheDirectory(): string | null {
11    return null;
12  },
13  get bundledAssets(): string | null {
14    return null;
15  },
16  get bundleDirectory(): string | null {
17    return null;
18  },
19  addListener(eventName: string): void {},
20  removeListeners(count: number): void {},
21};
22
23export default platformModule;
24