Florian Bouillon f235c62c58
V1
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 09:43:23 +01:00

14 lines
232 B
TypeScript

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