Files

11 lines
184 B
TypeScript
Raw Permalink Normal View History

2025-08-15 20:58:57 +08:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_NAME: string;
readonly VITE_TIMEOUT: number;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}