You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
409 B

2 months ago
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_BASE_URL: string
/** 客流统计接口完整 URL未设置时使用 env.ts 内默认域名 */
readonly VITE_PEOPLE_COUNTING_URL?: string
readonly VITE_TENCENT_MAP_KEY: string
readonly VITE_TENCENT_MAP_REFERER: string
readonly VITE_WECHAT_APP_ID: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}