File size: 270 Bytes
0e7bcc2 |
1 2 3 4 5 6 7 8 9 10 |
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>>;
|