UNPKG

@farris/bef-vue

Version:
12 lines (11 loc) 262 B
/** * 缓存策略 */ interface StorageStrategy { getItem(key: string): string; setItem(key: string, value: string): void; removeItem(key: string): void; removeItemsByScope(scope: string): void; clear(): void; } export { StorageStrategy };