paper-dynasty-website/types/Player.d.ts
2025-05-07 13:29:06 -05:00

17 lines
253 B
TypeScript

export interface Rarity {
id: number
name: string
color: string
value: number
}
export interface Player {
id: number
name: string
cost: number
image: string
headshot: string
description: string
franchise: string
rarity: Rarity
}