global.d.ts 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. import type {
  2. VNode,
  3. FunctionalComponent,
  4. PropType as VuePropType,
  5. ComponentPublicInstance
  6. } from "vue";
  7. import type { ECharts } from "echarts";
  8. import type { IconifyIcon } from "@iconify/vue";
  9. import type { TableColumns } from "@pureadmin/table";
  10. /**
  11. * 全局类型声明,无需引入直接在 `.vue` 、`.ts` 、`.tsx` 文件使用即可获得类型提示
  12. */
  13. declare global {
  14. /**
  15. * 平台的名称、版本、依赖、最后构建时间的类型提示
  16. */
  17. const __APP_INFO__: {
  18. pkg: {
  19. name: string;
  20. version: string;
  21. dependencies: Recordable<string>;
  22. devDependencies: Recordable<string>;
  23. };
  24. lastBuildTime: string;
  25. };
  26. /**
  27. * Window 的类型提示
  28. */
  29. interface Window {
  30. // Global vue app instance
  31. __APP__: App<Element>;
  32. webkitCancelAnimationFrame: (handle: number) => void;
  33. mozCancelAnimationFrame: (handle: number) => void;
  34. oCancelAnimationFrame: (handle: number) => void;
  35. msCancelAnimationFrame: (handle: number) => void;
  36. webkitRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  37. mozRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  38. oRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  39. msRequestAnimationFrame: (callback: FrameRequestCallback) => number;
  40. }
  41. /**
  42. * 打包压缩格式的类型声明
  43. */
  44. type ViteCompression =
  45. | "none"
  46. | "gzip"
  47. | "brotli"
  48. | "both"
  49. | "gzip-clear"
  50. | "brotli-clear"
  51. | "both-clear";
  52. /**
  53. * 全局自定义环境变量的类型声明
  54. * @see {@link https://yiming_chang.gitee.io/pure-admin-doc/pages/config/#%E5%85%B7%E4%BD%93%E9%85%8D%E7%BD%AE}
  55. */
  56. interface ViteEnv {
  57. VITE_PORT: number;
  58. VITE_PUBLIC_PATH: string;
  59. VITE_ROUTER_HISTORY: string;
  60. VITE_CDN: boolean;
  61. VITE_HIDE_HOME: string;
  62. VITE_COMPRESSION: ViteCompression;
  63. }
  64. /**
  65. * 继承 `@pureadmin/table` 的 `TableColumns` ,方便全局直接调用
  66. */
  67. interface TableColumnList extends Array<TableColumns> {}
  68. /**
  69. * 对应 `public/platform-config.json` 文件的类型声明
  70. * @see {@link https://yiming_chang.gitee.io/pure-admin-doc/pages/config/#platform-config-json}
  71. */
  72. interface PlatformConfigs {
  73. Version?: string;
  74. Title?: string;
  75. FixedHeader?: boolean;
  76. HiddenSideBar?: boolean;
  77. MultiTagsCache?: boolean;
  78. KeepAlive?: boolean;
  79. Locale?: string;
  80. Layout?: string;
  81. Theme?: string;
  82. DarkMode?: boolean;
  83. Grey?: boolean;
  84. Weak?: boolean;
  85. HideTabs?: boolean;
  86. HideFooter?: boolean;
  87. SidebarStatus?: boolean;
  88. EpThemeColor?: string;
  89. ShowLogo?: boolean;
  90. ShowModel?: string;
  91. MenuArrowIconNoTransition?: boolean;
  92. CachingAsyncRoutes?: boolean;
  93. TooltipEffect?: Effect;
  94. ResponsiveStorageNameSpace?: string;
  95. MapConfigure?: {
  96. amapKey?: string;
  97. options: {
  98. resizeEnable?: boolean;
  99. center?: number[];
  100. zoom?: number;
  101. };
  102. };
  103. }
  104. /**
  105. * 与 `PlatformConfigs` 类型不同,这里是缓存到浏览器本地存储的类型声明
  106. * @see {@link https://yiming_chang.gitee.io/pure-admin-doc/pages/config/#platform-config-json}
  107. */
  108. interface StorageConfigs {
  109. version?: string;
  110. title?: string;
  111. fixedHeader?: boolean;
  112. hiddenSideBar?: boolean;
  113. multiTagsCache?: boolean;
  114. keepAlive?: boolean;
  115. locale?: string;
  116. layout?: string;
  117. theme?: string;
  118. darkMode?: boolean;
  119. grey?: boolean;
  120. weak?: boolean;
  121. hideTabs?: boolean;
  122. hideFooter?: boolean;
  123. sidebarStatus?: boolean;
  124. epThemeColor?: string;
  125. showLogo?: boolean;
  126. showModel?: string;
  127. mapConfigure?: {
  128. amapKey?: string;
  129. options: {
  130. resizeEnable?: boolean;
  131. center?: number[];
  132. zoom?: number;
  133. };
  134. };
  135. username?: string;
  136. }
  137. /**
  138. * `responsive-storage` 本地响应式 `storage` 的类型声明
  139. */
  140. interface ResponsiveStorage {
  141. locale: {
  142. locale?: string;
  143. };
  144. layout: {
  145. layout?: string;
  146. theme?: string;
  147. darkMode?: boolean;
  148. sidebarStatus?: boolean;
  149. epThemeColor?: string;
  150. };
  151. configure: {
  152. grey?: boolean;
  153. weak?: boolean;
  154. hideTabs?: boolean;
  155. hideFooter?: boolean;
  156. showLogo?: boolean;
  157. showModel?: string;
  158. multiTagsCache?: boolean;
  159. };
  160. tags?: Array<any>;
  161. }
  162. /**
  163. * 平台里所有组件实例都能访问到的全局属性对象的类型声明
  164. */
  165. interface GlobalPropertiesApi {
  166. $echarts: ECharts;
  167. $storage: ResponsiveStorage;
  168. $config: PlatformConfigs;
  169. }
  170. }