import { Card } from "./card"; export interface Reserve { cards : ReserveCard[] } export interface ReserveCard { card : Card, number : number }