Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/main/core/src/lib/cache/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/main/core/src/lib/cache/local-storage-cache.js

import BaseCache from './base-cache';
import LsCacheStorage from './storage/ls-storage';

export default class LocalStorageCache<T> extends BaseCache<T>
{
	/**
	 * @private
	 */
	storage: LsCacheStorage = new LsCacheStorage();
}