Files
2026-06-12 23:14:12 +08:00

17 lines
344 B
TypeScript

/// <reference types="vite/client" />
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_BASE_URL: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}