e-inn-reader/env.d.ts
2025-05-29 13:41:38 +02:00

12 lines
No EOL
275 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_REMOTE_API: boolean;
readonly VITE_API_URL: string;
readonly VITE_APP_NAME: string;
readonly VITE_PORT: number;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}