UNPKG

hybrid_plus

Version:

Hybrid Flutter Javascript SDK

11 lines (10 loc) 279 B
import { ExecOptions } from "./core.ts"; /** 账户实体 */ export interface Account { username: string; password: string; } /** 根据用户Id获取用户信息接口参数 */ export interface GetUserInfoOptions extends ExecOptions<object, any> { userId: string; }