mirror of
https://github.com/jcreek/LivingDexTracker.git
synced 2026-07-13 02:53:45 +00:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import { type PokedexEntry } from './PokedexEntry';
|
|
import { type CatchRecord } from './CatchRecord';
|
|
|
|
export interface CombinedData {
|
|
pokedexEntry: PokedexEntry;
|
|
catchRecord: CatchRecord | null;
|
|
}
|