11 lines
184 B
TypeScript
Raw Normal View History

2026-05-20 21:39:12 +08:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_NAME: string;
readonly VITE_TIMEOUT: number;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}