feat(*): Add support for catch records to My Dex page

This commit is contained in:
Josh Creek
2024-07-12 14:19:44 +01:00
parent 0e8af37309
commit e7f1930eff
6 changed files with 460 additions and 31 deletions
+7
View File
@@ -0,0 +1,7 @@
import { type PokedexEntry } from './PokedexEntry';
import { type CatchRecord } from './CatchRecord';
export interface CombinedData {
pokedexEntry: PokedexEntry;
catchRecord: CatchRecord;
}