mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-10-21 20:45:52 +02:00
- remove any `.js` extension imports - remove unncessary dynamic imports of `modifier.ts` file. The file was being imported statically & dynamically. Made it pure static - increase vite chunk-size warning limit Co-authored-by: Mumble <171087428+frutescens@users.noreply.github.com>
4 lines
119 B
TypeScript
4 lines
119 B
TypeScript
import BattleScene from "#app/battle-scene";
|
|
|
|
export type ConditionFn = (scene: BattleScene, args?: any[]) => boolean;
|