@e280/quay
Version:
File-browser and outliner UI for the web
10 lines (9 loc) • 327 B
TypeScript
import { Forklift } from "./forklift.js";
export declare class MemoryForklift implements Forklift {
#private;
list(): AsyncIterable<string>;
has(label: string): Promise<boolean>;
save(label: string, file: Blob): Promise<void>;
load(label: string): Promise<Blob>;
delete(label: string): Promise<void>;
}