17 lines
253 B
TypeScript
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
|
|
} |