| Current Path : /var/www/homesaver/www/bitrix/js/main/core/src/lib/cache/storage/ |
| Current File : /var/www/homesaver/www/bitrix/js/main/core/src/lib/cache/storage/i-cache-storage.js |
export interface ICacheStorage
{
size: number;
get(key: string): any;
set(key: string, value: any): void;
has(key: string): boolean;
delete(key: string): void;
keys(): Array<string>;
values(): Array<any>;
}