UNPKG

ng-yunzai-mobile

Version:

1. 适配yunzai_uni_app_x

9 lines (8 loc) 307 B
import { InjectionToken } from '@angular/core'; import { ITokenModel } from './itoken.model'; export declare const DA_STORE_TOKEN: InjectionToken<IStore>; export interface IStore { get(key: string): ITokenModel; set(key: string, value: ITokenModel): boolean; remove(key: string): any; }