UNPKG

ng-yunzai-mobile

Version:

1. 适配yunzai_uni_app_x

9 lines (8 loc) 290 B
import { ITokenModel } from './itoken.model'; import { IStore } from './istore.interface'; export declare class MemoryStore implements IStore { private cache; get(key: string): ITokenModel; set(key: string, value: ITokenModel): boolean; remove(key: string): void; }