提交 | 用户 | 时间
|
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_API_URL: string |
|
26 |
readonly VITE_BASE_PATH: string |
221c1c
|
27 |
readonly VITE_UPLOAD_TYPE: string |
aed8e1
|
28 |
readonly VITE_VIDEO_CAMERA_DOMAIN: string |
820397
|
29 |
readonly VITE_DROP_DEBUGGER: string |
H |
30 |
readonly VITE_DROP_CONSOLE: string |
|
31 |
readonly VITE_SOURCEMAP: string |
|
32 |
readonly VITE_OUT_DIR: string |
79907f
|
33 |
readonly VITE_STATIC_DIR: string |
820397
|
34 |
} |
H |
35 |
|
|
36 |
declare global { |
|
37 |
interface ImportMeta { |
|
38 |
readonly env: ImportMetaEnv |
|
39 |
} |
|
40 |
} |