File size: 256 Bytes
6cd9596
 
 
 
 
 
 
 
 
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;
}