1
0

global.d.ts 2.3 KB

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