kura
Version:
The FileSystem API abstraction library.
10 lines (8 loc) • 369 B
text/typescript
import { FileSystemOptions } from "../FileSystemOptions";
import { LocalFileSystemAsync } from "../LocalFileSystemAsync";
import { IdbLocalFileSystem } from "./IdbLocalFileSystem";
export class IdbLocalFileSystemAsync extends LocalFileSystemAsync {
constructor(dbName: string, options?: FileSystemOptions) {
super(new IdbLocalFileSystem(dbName, options));
}
}