UNPKG

@wigetapp/cache

Version:

wxs 微信系开发脚手架之缓存

8 lines (7 loc) 250 B
import { ICache } from './ICache'; export declare class DefaultCache implements ICache { private map; get(key: string): Promise<string>; set(key: string, jsonValue: string): Promise<void>; remove(key: string): Promise<void>; }