machineuser
version control dist & node_modules...
263e0f2
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;
}