Files
evilspins/types/types.ts
valere 7fa6f6ccc8
All checks were successful
Deploy App / build (push) Successful in 2m15s
Deploy App / deploy (push) Successful in 27s
sql server + platine v2
2026-02-06 22:52:02 +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' | 'V' | 'D' | 'R'