global.d.ts 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_PUBLIC_PATH: string;
  55. VITE_GLOB_APP_TITLE: string;
  56. VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none';
  57. }
  58. declare function parseInt(s: string | number, radix?: number): number;
  59. declare function parseFloat(string: string | number): number;
  60. namespace JSX {
  61. // tslint:disable no-empty-interface
  62. type Element = VNode;
  63. // tslint:disable no-empty-interface
  64. type ElementClass = ComponentRenderProxy;
  65. interface ElementAttributesProperty {
  66. $props: any;
  67. }
  68. interface IntrinsicElements {
  69. [elem: string]: any;
  70. }
  71. interface IntrinsicAttributes {
  72. [elem: string]: any;
  73. }
  74. }
  75. }
  76. declare module 'vue' {
  77. export type JSXComponent<Props = any> =
  78. | { new (): ComponentPublicInstance<Props> }
  79. | FunctionalComponent<Props>;
  80. }