Nessuna descrizione

store.d.ts 996B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import { ErrorTypeEnum } from '/@/enums/exceptionEnum';
  2. import { MenuModeEnum, MenuTypeEnum } from '/@/enums/menuEnum';
  3. import { RoleInfo } from '/@/api/sys/model/userModel';
  4. // Lock screen information
  5. export interface LockInfo {
  6. // Password required
  7. pwd?: string | undefined;
  8. // Is it locked?
  9. isLock?: boolean;
  10. }
  11. // Error-log information
  12. export interface ErrorLogInfo {
  13. // Type of error
  14. type: ErrorTypeEnum;
  15. // Error file
  16. file: string;
  17. // Error name
  18. name?: string;
  19. // Error message
  20. message: string;
  21. // Error stack
  22. stack?: string;
  23. // Error detail
  24. detail: string;
  25. // Error url
  26. url: string;
  27. // Error time
  28. time?: string;
  29. }
  30. export interface UserInfo {
  31. userId: string | number;
  32. username: string;
  33. realName: string;
  34. avatar: string;
  35. desc?: string;
  36. homePath?: string;
  37. token?:string;
  38. roles: RoleInfo[];
  39. }
  40. export interface BeforeMiniState {
  41. menuCollapsed?: boolean;
  42. menuSplit?: boolean;
  43. menuMode?: MenuModeEnum;
  44. menuType?: MenuTypeEnum;
  45. }