kura
Version:
The FileSystem API abstraction library.
12 lines • 554 B
TypeScript
import { EntryAsync } from "./EntryAsync";
import { Entry, LocalFileSystem } from "./filesystem";
import { FileSystemAsync } from "./FileSystemAsync";
export declare class LocalFileSystemAsync {
localFileSystem: LocalFileSystem;
constructor(localFileSystem: LocalFileSystem);
get PERSISTENT(): number;
get TEMPORARY(): number;
requestFileSystemAsync(type: number, size: number): Promise<FileSystemAsync>;
resolveLocalFileSystemAsyncURL(url: string): Promise<EntryAsync<Entry>>;
}
//# sourceMappingURL=LocalFileSystemAsync.d.ts.map