hcsq-admin-master/src/vite-env.d.ts

21 lines
398 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_BASE_API: string,
readonly VITE_IMAGE_BASE_API: stirng
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare var FitConfig:any;
declare var echarts:any;