UNPKG

@tnhb/cache

Version:

TNHB 缓存 By blak-kong

11 lines (10 loc) 269 B
/** * @author blak-kong * @copyright blak-kong@foxmail.com * @description access 缓存接口 */ export interface ICache { get(key: string): Promise<any>; set(key: string, jsonValue: string): Promise<any>; remove(key: string): Promise<any>; }