17 lines
384 B
TypeScript
17 lines
384 B
TypeScript
interface ImportMetaEnv {
|
|
readonly VITE_VERSION: string;
|
|
|
|
readonly VITE_PROJECT_API: string;
|
|
|
|
readonly VITE_BAIDU_TONGJI_SITE_ID: string;
|
|
readonly VITE_BAIDU_TONGJI_ACCESS_TOKEN: string;
|
|
|
|
readonly VITE_AI_APIPassword: string;
|
|
readonly VITE_AI_MODEL: string;
|
|
|
|
readonly VITE_GAODE_WEB_API: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
} |