16 lines
460 B
TypeScript
16 lines
460 B
TypeScript
/// <reference types="vite/client" />
|
|
declare module "*.vue" {
|
|
import { DefineComponent } from "vue";
|
|
const component: DefineComponent<{}, {}, any>;
|
|
}
|
|
declare module 'element-plus/dist/locale/zh-cn.mjs'
|
|
declare module 'element-plus/dist/locale/en.mjs'
|
|
declare interface ImportMetaEnv {
|
|
readonly MODE: string
|
|
readonly VITE_BASE_API: string
|
|
readonly VITE_EDITOR_URL: string
|
|
}
|
|
|
|
declare interface ImportMeta {
|
|
readonly env: ImpoertMetaEnv
|
|
} |