UNPKG

277 BTypeScriptView Raw
1declare const Cache: {
2 /**
3 * @default false
4 */
5 enabled: boolean;
6
7 /**
8 * @default {}
9 */
10 files: any;
11
12 add(key: string, file: any): void;
13
14 get(key: string): any;
15
16 remove(key: string): void;
17
18 clear(): void;
19};
20
21export { Cache };