mirror of
https://github.com/jcreek/LivingDexTracker.git
synced 2026-07-13 02:53:45 +00:00
26 lines
468 B
TypeScript
26 lines
468 B
TypeScript
export interface Pokedex {
|
|
_id: string;
|
|
userId: string;
|
|
name: string;
|
|
description: string;
|
|
isLivingDex: boolean;
|
|
isShinyDex: boolean;
|
|
isOriginDex: boolean;
|
|
isFormDex: boolean;
|
|
gameScope: string | null;
|
|
}
|
|
|
|
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;
|
|
}
|