mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-17 15:25:22 +01:00
* Partially ported over pkty matchers (WIP) * Cleaned up some more matchers * Fiexd up matchers * Fixed up remaining matchers * Removed the word "matcher" from the pkty matcher functions If we want them back we can always undo this commit and convert the other custom ones * Added wip spite test * Added `toHaveUsedPP` matcher * Fixed up docs and tests * Fixed spite test * Ran biome * Apply Biome * Reverted biome breaking i18next * Update src/typings/i18next.d.ts comment * Fixed log message to not be overly verbose * Added option to check for all PP used in pp matcher + cleaned up grudge tests * Fixed up tests * Fixed tests and such * Fix various TSDocs + missing TSDoc imports
17 lines
436 B
TypeScript
17 lines
436 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;
|
|
}
|