UNPKG

ng-yunzai-mobile

Version:

1. 修改wechat.micro.ts

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; }