349 BTypeScriptView Raw
1import * as common from './image-cache-common';
2export declare class Cache extends common.Cache {
3 private _cache;
4 private _memoryWarningHandler;
5 constructor();
6 _downloadCore(request: common.DownloadRequest): void;
7 get(key: string): any;
8 set(key: string, image: any): void;
9 remove(key: string): void;
10 clear(): void;
11}