///
interface ImportMetaEnv {
readonly VITE_CASDOOR_ENDPOINT: string
readonly VITE_CASDOOR_CLIENT_ID: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module 'element-plus/dist/locale/zh-cn.mjs' {
const zhCn: Record
export default zhCn
}