mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-22 11:08:18 +01:00
* make vite-port configurable and make it default 8000 * add retries for `does not trigger by non damage moves` test
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_PORT?: string;
|
|
readonly VITE_BYPASS_LOGIN?: string;
|
|
readonly VITE_BYPASS_TUTORIAL?: string;
|
|
readonly VITE_API_BASE_URL?: string;
|
|
readonly VITE_SERVER_URL?: string;
|
|
readonly VITE_DISCORD_CLIENT_ID?: string;
|
|
readonly VITE_GOOGLE_CLIENT_ID?: string;
|
|
readonly VITE_I18N_DEBUG?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|