UNPKG

@luband/jstools

Version:

前端工具包

10 lines (9 loc) 305 B
export declare class BaseCache { storage: Storage; setItem(key: string, value: any, isStringify?: boolean): void; getItem(key: string, isParse?: boolean): any | null; removeItem(key: string): void; clear(): void; key(index: number): string | null; length(): number; }