Spaces:
Running
Running
File size: 256 Bytes
263e0f2 |
1 2 3 4 5 6 7 8 9 10 |
export namespace Cache {
export let enabled: boolean;
export let files: any;
export function add(key: string, file: any): void;
export function get(key: string): any;
export function remove(key: string): void;
export function clear(): void;
}
|