潘志宝
2024-11-14 da47a3349dcfd87db23ab8e64fbf35fe1aea5685
提交 | 用户 | 时间
820397 1 /// <reference types="vite/client" />
H 2
3 declare module '*.vue' {
4   import { DefineComponent } from 'vue'
5   // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
6   const component: DefineComponent<{}, {}, any>
7   export default component
835a9c 8
H 9     export class ToolHeader {
10     }
820397 11 }
H 12
13 interface ImportMetaEnv {
14   readonly VITE_APP_TITLE: string
15   readonly VITE_PORT: number
16   readonly VITE_OPEN: string
17   readonly VITE_DEV: string
18   readonly VITE_APP_CAPTCHA_ENABLE: string
19   readonly VITE_APP_TENANT_ENABLE: string
20   readonly VITE_APP_DEFAULT_LOGIN_TENANT: string
21   readonly VITE_APP_DEFAULT_LOGIN_USERNAME: string
22   readonly VITE_APP_DEFAULT_LOGIN_PASSWORD: string
23   readonly VITE_APP_DOCALERT_ENABLE: string
24   readonly VITE_BASE_URL: string
25   readonly VITE_UPLOAD_URL: string
26   readonly VITE_API_URL: string
27   readonly VITE_BASE_PATH: string
28   readonly VITE_DROP_DEBUGGER: string
29   readonly VITE_DROP_CONSOLE: string
30   readonly VITE_SOURCEMAP: string
31   readonly VITE_OUT_DIR: string
32 }
33
34 declare global {
35   interface ImportMeta {
36     readonly env: ImportMetaEnv
37   }
38 }