global.d.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import type { CSSProperties } from 'vue'
  2. declare global {
  3. declare interface Fn<T = any> {
  4. (...arg: T[]): T
  5. }
  6. declare type Nullable<T> = T | null
  7. declare type ElRef<T extends HTMLElement = HTMLDivElement> = Nullable<T>
  8. declare type Recordable<T = any, K = string> = Record<K extends null | undefined ? string : K, T>
  9. declare type RemoveReadonly<T> = {
  10. -readonly [P in keyof T]: T[P]
  11. }
  12. declare type ComponentRef<T> = InstanceType<T>
  13. declare type LocaleType = 'zh-CN' | 'en'
  14. declare type TimeoutHandle = ReturnType<typeof setTimeout>
  15. declare type IntervalHandle = ReturnType<typeof setInterval>
  16. declare type ElementPlusInfoType = 'success' | 'info' | 'warning' | 'danger'
  17. declare type LayoutType = 'classic' | 'topLeft' | 'top' | 'cutMenu'
  18. declare type AxiosHeaders =
  19. | 'application/json'
  20. | 'application/x-www-form-urlencoded'
  21. | 'multipart/form-data'
  22. declare type AxiosMethod = 'get' | 'post' | 'delete' | 'put'
  23. declare type AxiosResponseType = 'arraybuffer' | 'blob' | 'document' | 'json' | 'text' | 'stream'
  24. declare interface AxiosConfig {
  25. params?: any
  26. data?: any
  27. url?: string
  28. method?: AxiosMethod
  29. headersType?: string
  30. responseType?: AxiosResponseType
  31. }
  32. declare interface IResponse<T = any> {
  33. code: string
  34. data: T extends any ? T : T & any
  35. }
  36. declare interface ThemeTypes {
  37. elColorPrimary?: string
  38. leftMenuBorderColor?: string
  39. leftMenuBgColor?: string
  40. leftMenuBgLightColor?: string
  41. leftMenuBgActiveColor?: string
  42. leftMenuCollapseBgActiveColor?: string
  43. leftMenuTextColor?: string
  44. leftMenuTextActiveColor?: string
  45. logoTitleTextColor?: string
  46. logoBorderColor?: string
  47. topHeaderBgColor?: string
  48. topHeaderTextColor?: string
  49. topHeaderHoverColor?: string
  50. topToolBorderColor?: string
  51. }
  52. }