spy-client
Version:
spy client
19 lines (18 loc) • 431 B
TypeScript
export default class SpyLocalCache {
private readonly option;
private storage;
private timer;
private tmpList;
constructor(option?: any);
init(): void;
load(): void;
addLog(info: any): void;
getData(cb: any): void;
save(): void;
flushLog(): void;
zip(str: string): {
codes: any;
result: string;
};
unzip(str: string, codes?: any): string;
}