UNPKG

@wigetapp/cache

Version:

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

11 lines (10 loc) 268 B
/** * @author wigetapp * @copyright wx@wigetapp.com * @description access_token 缓存接口 */ export interface ICache { get(key: string): Promise<any>; set(key: string, jsonValue: string): Promise<any>; remove(key: string): Promise<any>; }