import type SystemInfo from './SystemInfo'; import type NetworkInfo from './NetworkInfo'; import type UserInfo from './UserInfo'; interface AppModel { /** * 系统信息. */ systemInfo: SystemInfo; /** * 网络状态. */ networkInfo: NetworkInfo; /** * 登录令牌. */ token?: string; /** * 用户信息. */ userInfo?: UserInfo; } export default AppModel;