Files
evilspins/types/types.ts
valere b9a3d0184f
All checks were successful
Deploy App / build (push) Successful in 10s
Deploy App / deploy (push) Successful in 11s
yeah
2026-02-02 21:00:28 +01:00

19 lines
379 B
TypeScript

export interface Card {
url_audio: string
url_image: string
year: number
month: string
day: string
hour: string
artist: string
title: string
esid: string
slug: string
createdAt: Date
suit: Suit
rank: Rank
}
export type Suit = '♠' | '♣' | '♦' | '♥'
export type Rank = 'A' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | 'J' | 'Q' | 'K'