bgxremover / bundle.d.ts
prappo's picture
Upload 21 files
0e7bcc2
raw
history blame contribute delete
270 Bytes
export { preload, load };
import { Config } from './schema';
type Entry = {
url: string;
size: number;
mime: string;
};
declare function load(key: string, config: Config): Promise<Blob>;
declare function preload(config: Config): Promise<Map<string, Entry>>;