Florian Bouillon 53afc67b72
Updated Interfaces
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 11:02:24 +01:00

12 lines
235 B
TypeScript

import { CardSimple } from "./Card";
import { List } from "./General";
export type RetreatSimple = number
export interface RetreatSingle {
id: RetreatSimple
cards: Array<CardSimple>
}
export type RetreatList = List<RetreatSimple>