12345678910111213141516171819202122232425262728293031 |
- declare module '*.vue' {
- import { DefineComponent } from 'vue'
-
- const component: DefineComponent<{}, {}, any>
- export default component
- }
- interface ImportMetaEnv {
-
- readonly VITE_APP_TITLE: string
-
- readonly VITE_SERVER_PORT: string
-
- readonly VITE_SERVER_BASEURL: string
-
- readonly VITE_APP_PROXY: 'true' | 'false'
-
- readonly VITE_APP_PROXY_PREFIX: string
-
- readonly VITE_UPLOAD_BASEURL: string
-
- readonly VITE_DELETE_CONSOLE: string
-
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
|