22 lines
578 B
TypeScript
22 lines
578 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
/// <reference types="vite-svg-loader" />
|
||
|
|
||
|
declare module '*.vue' {
|
||
|
import { DefineComponent } from 'vue'
|
||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
|
||
|
const component: DefineComponent<{}, {}, any>
|
||
|
export default component
|
||
|
}
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly VITE_APP_TITLE: string
|
||
|
readonly VITE_SERVER_PORT: string
|
||
|
readonly VITE_SERVER_BASEURL: string
|
||
|
readonly VITE_DELETE_CONSOLE: string
|
||
|
// 更多环境变量...
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv
|
||
|
}
|