Files
javascript-sdk/interfaces/Retreat.ts
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>