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.

16 lines
447 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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