mirror of
https://github.com/jcreek/LivingDexTracker.git
synced 2026-09-18 19:42:04 +00:00
14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
// Supabase-based RegionGameMapping interface
|
|
export interface RegionGameMapping {
|
|
id?: number;
|
|
region: string;
|
|
game: string; // Note: Different from MongoDB version which had 'games' array
|
|
}
|
|
|
|
// Database record type for Supabase
|
|
export interface RegionGameMappingDB {
|
|
id: number;
|
|
region: string;
|
|
game: string;
|
|
}
|