common.d.ts 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //common type file, you can not export the type in common.d.ts
  2. //not export can use
  3. interface ObjTy {
  4. [propName: string]: any
  5. }
  6. /*axiosReq请求配置*/
  7. import { AxiosRequestConfig } from 'axios'
  8. interface AxiosReqTy extends AxiosRequestConfig {
  9. url?: string
  10. method?: string
  11. data?: ObjTy
  12. isParams?: boolean
  13. bfLoading?: boolean
  14. afHLoading?: boolean
  15. isUploadFile?: boolean
  16. isDownLoadFile?: boolean
  17. isAlertErrorMsg?: boolean
  18. baseURL?: string
  19. timeout?: number
  20. }
  21. interface AxiosConfigTy {
  22. url?: string
  23. method?: string
  24. data?: ObjTy
  25. isParams?: boolean
  26. bfLoading?: boolean
  27. afHLoading?: boolean
  28. isUploadFile?: boolean
  29. isDownLoadFile?: boolean
  30. isAlertErrorMsg?: boolean
  31. baseURL?: string
  32. timeout?: number
  33. }
  34. interface SettingTy {
  35. title: string
  36. sidebarLogo: boolean
  37. showLeftMenu: boolean
  38. ShowDropDown: boolean
  39. showHamburger: boolean
  40. isNeedLogin: boolean
  41. isNeedNprogress: boolean
  42. showTagsView: boolean
  43. tagsViewNum: number
  44. openProdMock: boolean
  45. errorLog: string | Array<string>
  46. permissionMode: string
  47. delWindowHeight: string
  48. tmpToken: string
  49. showNavbarTitle: boolean
  50. showTopNavbar: boolean
  51. mainNeedAnimation: boolean
  52. viteBasePath: string
  53. }