| 123456789101112131415161718192021222324252627 |
- // / <reference types="vite/client" />
- // declare module '*.vue' {
- // import type { DefineComponent } from 'vue'
- // const component: DefineComponent<{}, {}, any>
- // export default component
- // }
- interface ImportMetaEnv {
- readonly VITE_LOGO: 'QingQue'|'KuPai'
- readonly VITE_API_HOST: string
- readonly VITE_PROJECT_NAME: string
- readonly DEV: boolean
- readonly VITE_ENV: 'development'|'production'
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
- declare module 'element-plus/dist/locale/zh-cn.mjs'
|