Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/main/core/src/lib/cache/storage/
Upload File :
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>;
}