UNPKG

ng-yunzai-mobile

Version:

1. 适配yunzai_uni_app_x

9 lines (8 loc) 285 B
import { User } from './user.interface'; import { UserStore } from './user.store.interface'; export declare class MemoryUserStore implements UserStore { private cache; get(key: string): User; set(key: string, value: User): boolean; remove(key: string): void; }