| 123456789101112131415161718 |
- declare interface ImportMetaEnv {
- readonly VITE_APP_TITLE: string
- readonly VITE_BASE_API: string
- readonly VITE_ROUTER_HISTORY: 'hash' | 'html5'
- readonly VITE_PUBLIC_PATH: string
- readonly VITE_VIDEO_PORT: string
- readonly VITE_HEART_BEAT_PORT: string
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
- declare module '*.vue' {
- import { DefineComponent } from 'vue'
- const component: DefineComponent<{}, {}, any>
- export default component
- }
|