1234567891011121314151617181920 |
- import type { BasicUserInfo } from '@vben-core/typings';
- /** 用户信息 */
- interface UserInfo extends BasicUserInfo {
- /**
- * 用户描述
- */
- desc: string;
- /**
- * 首页地址
- */
- homePath: string;
- /**
- * accessToken
- */
- token: string;
- }
- export type { UserInfo };
|