Updated Interfaces

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-03-11 11:02:24 +01:00
parent 593b17b55f
commit 53afc67b72
6 changed files with 43 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
import { CardSimple } from "./Card";
import { List } from "./General";
export type RetreatSimple = number
@@ -7,7 +8,4 @@ export interface RetreatSingle {
cards: Array<CardSimple>
}
export interface RetreatList {
count: number,
list: Array<RetreatSimple>
}
export type RetreatList = List<RetreatSimple>