user.ts 293 B

1234567891011121314151617181920
  1. import type { BasicUserInfo } from '@vben-core/typings';
  2. /** 用户信息 */
  3. interface UserInfo extends BasicUserInfo {
  4. /**
  5. * 用户描述
  6. */
  7. desc: string;
  8. /**
  9. * 首页地址
  10. */
  11. homePath: string;
  12. /**
  13. * accessToken
  14. */
  15. token: string;
  16. }
  17. export type { UserInfo };