kura-expo-fs
Version:
The FileSystem API abstraction library, Expo Filesystem Plugin
10 lines (8 loc) • 370 B
text/typescript
import { LocalFileSystemAsync } from "kura";
import { FileSystemOptions } from "kura/lib/FileSystemOptions";
import { ExpoFsLocalFileSystem } from "./ExpoFsLocalFileSystem";
export class ExpoFsLocalFileSystemAsync extends LocalFileSystemAsync {
constructor(rootDir: string, options?: FileSystemOptions) {
super(new ExpoFsLocalFileSystem(rootDir, options));
}
}