UNPKG

@sparta-utils/cache-util

Version:

统一的浏览器缓存工具类,支持 localStorage、sessionStorage、memory、cookie、indexedDB,内置 SM2 加密与过期机制。A unified browser caching utility supporting localStorage, sessionStorage, memory, cookie, indexedDB with SM2 encryption and expiration.

17 lines (16 loc) 368 B
/** * memoryStorage.ts * 简单的内存缓存,刷新页面即清空 */ declare const _default: { set(key: string, value: any, options?: { expire?: number; encrypt?: boolean; }): boolean; get(key: string, options?: { encrypt?: boolean; }): any; remove(key: string): void; clear(): void; }; export default _default;