UNPKG

ixfs

Version:

An 'fs' kind of library dedicated to the browser

6 lines (5 loc) 226 B
export interface IWriteFileInstanceProps { isDirectory: (fullPath: string) => Promise<boolean>; putRecord: <TValue = unknown>(value: TValue, key?: IDBValidKey) => Promise<TValue>; rootDirectoryName: string; }