Files
MBTI_wang/h5-vue/env.d.ts
Ghost a411bf7b21 高考版优化
审核模式优化
2026-04-29 18:01:26 +08:00

16 lines
316 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<object, object, unknown>
export default component
}
interface ImportMetaEnv {
readonly VITE_API_BASE: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}