pokerogue/src/vite.env.d.ts
Felix Staud 782718c293 make i18n debugging an optional env setting
this also reduces output noise in tests
2024-06-28 12:59:54 -07:00

14 lines
329 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BYPASS_LOGIN?: string;
readonly VITE_BYPASS_TUTORIAL?: string;
readonly VITE_API_BASE_URL?: string;
readonly VITE_SERVER_URL?: string;
readonly VITE_I18N_DEBUG?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv
}