global.d.ts 2.4 KB

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