15 lines
329 B
TypeScript
15 lines
329 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
|
||
|
/** 声明环境变量的类型 */
|
||
|
interface ImportMetaEnv {
|
||
|
readonly VITE_API_PREFIX: string
|
||
|
readonly VITE_API_BASE_URL: string
|
||
|
readonly VITE_BASE: string
|
||
|
readonly VITE_APP_SETTING: string
|
||
|
readonly VITE_CLIENT_ID: string
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv
|
||
|
}
|