///
///
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
interface ImportMetaEnv {
readonly VITE_API_BASE_URL: string
readonly VITE_WS_URL: string
readonly VITE_CESIUM_ION_ACCESS_TOKEN: string
readonly VITE_APP_TITLE: string
readonly VITE_APP_VERSION: string
readonly VITE_DEBUG_MODE: string
readonly VITE_MOCK_DATA: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}