Cache.d.ts 256 B

123456789
  1. export namespace Cache {
  2. export let enabled: boolean;
  3. export let files: any;
  4. export function add( key: string, file: any ): void;
  5. export function get( key: string ): any;
  6. export function remove( key: string ): void;
  7. export function clear(): void;
  8. }
粤ICP备19079148号