julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
256 Bytes
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;
}