Files
LivingDexTracker/src/lib/models/Pokedex.ts
T
2026-01-17 23:30:40 +00:00

27 lines
490 B
TypeScript

export interface Pokedex {
_id: string;
userId: string;
name: string;
description: string;
isLivingDex: boolean;
isShinyDex: boolean;
isOriginDex: boolean;
isFormDex: boolean;
gameScope: string | null;
dexScopes: string[];
}
export interface PokedexDB {
id: string;
userId: string;
name: string;
description: string;
isLivingDex: boolean;
isShinyDex: boolean;
isOriginDex: boolean;
isFormDex: boolean;
gameScope: string | null;
createdAt: string;
updatedAt: string;
}