UNPKG

ng-yunzai-mobile

Version:

1. 适配yunzai_uni_app_x

10 lines (9 loc) 275 B
import { Observable } from 'rxjs'; import { User } from './user.interface'; export interface UserServiceInterface { set(data: User): boolean; get(type?: any): User; get<T extends User>(type?: any): T; clear(): void; change(): Observable<User>; }