@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
11 lines (10 loc) • 615 B
TypeScript
import { ICacheManagementService, SystemCacheObjects } from '@docsvision/webclient/Platform/$CacheManagement';
import { $LocalStorage } from '@docsvision/webclient/System/$LocalStorage';
export declare const USER_AVATAR_CACHE_KEY = "UserAvatarCacheKey";
/** Сервис для управления кешем системных объектов. */
export declare class CacheManagementService implements ICacheManagementService {
private services;
constructor(services: $LocalStorage);
resetCache(objects: SystemCacheObjects): void;
updateCache(object: SystemCacheObjects, value: unknown): void;
}