12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //common type file, you can not export the type in common.d.ts
- //not export can use
- interface ObjTy {
- [propName: string]: any
- }
- /*axiosReq请求配置*/
- import { AxiosRequestConfig } from 'axios'
- interface AxiosReqTy extends AxiosRequestConfig {
- url?: string
- method?: string
- data?: ObjTy
- isParams?: boolean
- bfLoading?: boolean
- afHLoading?: boolean
- isUploadFile?: boolean
- isDownLoadFile?: boolean
- isAlertErrorMsg?: boolean
- baseURL?: string
- timeout?: number
- }
- interface AxiosConfigTy {
- url?: string
- method?: string
- data?: ObjTy
- isParams?: boolean
- bfLoading?: boolean
- afHLoading?: boolean
- isUploadFile?: boolean
- isDownLoadFile?: boolean
- isAlertErrorMsg?: boolean
- baseURL?: string
- timeout?: number
- }
- interface SettingTy {
- title: string
- sidebarLogo: boolean
- showLeftMenu: boolean
- ShowDropDown: boolean
- showHamburger: boolean
- isNeedLogin: boolean
- isNeedNprogress: boolean
- showTagsView: boolean
- tagsViewNum: number
- openProdMock: boolean
- errorLog: string | Array<string>
- permissionMode: string
- delWindowHeight: string
- tmpToken: string
- showNavbarTitle: boolean
- showTopNavbar: boolean
- mainNeedAnimation: boolean
- viteBasePath: string
- }
|