mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 09:02:47 +02:00
https://github.com/pagefaultgames/pokerogue/pull/5962/ * Fixed lint issue; ran biome on entire repository * Fixed biome.jsonc * Trimmed trailing whitespace... again... * Fixed PR template md * Fixed package json * Fixed void return issues + ran biome again * ran biome
15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
import type { SetupServerApi } from "msw/node";
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
/**
|
|
* Only used in testing.
|
|
* Can technically be undefined/null but for ease of use we are going to assume it is always defined.
|
|
* Used to load i18n files exclusively.
|
|
*
|
|
* To set up your own server in a test see `game_data.test.ts`
|
|
*/
|
|
var server: SetupServerApi;
|
|
}
|