UNPKG

indexeddb-fs

Version:

An 'fs' kind of library dedicated to the browser

6 lines (5 loc) 256 B
export interface IFileDetailsInstanceProps { getRecord: <TValue>(query: IDBValidKey | IDBKeyRange, onResolve: (target: IDBRequest) => TValue) => Promise<TValue>; isFile: (fullPath: string) => Promise<boolean>; rootDirectoryName: string; }