global.d.ts 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import type {
  2. ComponentRenderProxy,
  3. VNode,
  4. ComponentPublicInstance,
  5. FunctionalComponent,
  6. PropType as VuePropType,
  7. } from "vue";
  8. declare global {
  9. const __APP_INFO__: {
  10. pkg: {
  11. name: string;
  12. version: string;
  13. dependencies: Recordable<string>;
  14. devDependencies: Recordable<string>;
  15. };
  16. lastBuildTime: string;
  17. };
  18. declare interface Window {
  19. // Global vue app instance
  20. __APP__: App<Element>;
  21. webkitCancelAnimationFrame: (id?: any) => any;
  22. webkitRequestAnimationFrame: (id?: any) => any;
  23. mozCancelAnimationFrame: (id?: any) => any;
  24. oCancelAnimationFrame: (id?: any) => any;
  25. msCancelAnimationFrame: (id?: any) => any;
  26. mozRequestAnimationFrame: (id?: any) => any;
  27. oRequestAnimationFrame: (id?: any) => any;
  28. msRequestAnimationFrame: (id?: any) => any;
  29. }
  30. // vue
  31. declare type PropType<T> = VuePropType<T>;
  32. export type Writable<T> = {
  33. -readonly [P in keyof T]: T[P];
  34. };
  35. declare type Nullable<T> = T | null;
  36. declare type NonNullable<T> = T extends null | undefined ? never : T;
  37. declare type Recordable<T = any> = Record<string, T>;
  38. declare type ReadonlyRecordable<T = any> = {
  39. readonly [key: string]: T;
  40. };
  41. declare type Indexable<T = any> = {
  42. [key: string]: T;
  43. };
  44. declare type DeepPartial<T> = {
  45. [P in keyof T]?: DeepPartial<T[P]>;
  46. };
  47. declare type TimeoutHandle = ReturnType<typeof setTimeout>;
  48. declare type IntervalHandle = ReturnType<typeof setInterval>;
  49. declare interface ChangeEvent extends Event {
  50. target: HTMLInputElement;
  51. }
  52. declare interface WheelEvent {
  53. path?: EventTarget[];
  54. }
  55. interface ImportMetaEnv extends ViteEnv {
  56. __: unknown;
  57. }
  58. declare interface ViteEnv {
  59. VITE_PORT: number;
  60. VITE_USE_MOCK: boolean;
  61. VITE_USE_PWA: boolean;
  62. VITE_PUBLIC_PATH: string;
  63. VITE_PROXY: [string, string][];
  64. VITE_GLOB_APP_TITLE: string;
  65. VITE_GLOB_APP_SHORT_NAME: string;
  66. VITE_USE_CDN: boolean;
  67. VITE_DROP_CONSOLE: boolean;
  68. VITE_BUILD_COMPRESS: "gzip" | "brotli" | "none";
  69. VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE: boolean;
  70. VITE_LEGACY: boolean;
  71. VITE_USE_IMAGEMIN: boolean;
  72. VITE_GENERATE_UI: string;
  73. }
  74. declare function parseInt(s: string | number, radix?: number): number;
  75. declare function parseFloat(string: string | number): number;
  76. namespace JSX {
  77. // tslint:disable no-empty-interface
  78. type Element = VNode;
  79. // tslint:disable no-empty-interface
  80. type ElementClass = ComponentRenderProxy;
  81. interface ElementAttributesProperty {
  82. $props: any;
  83. }
  84. interface IntrinsicElements {
  85. [elem: string]: any;
  86. }
  87. interface IntrinsicAttributes {
  88. [elem: string]: any;
  89. }
  90. }
  91. }