UNPKG

ng-yunzai-mobile

Version:

1. 适配yunzai_uni_app_x

9 lines (8 loc) 288 B
import { InjectionToken } from '@angular/core'; import { User } from './user.interface'; export declare const DA_STORE_USER: InjectionToken<User>; export interface UserStore { get(key: string): User; set(key: string, value: User): boolean; remove(key: string): any; }