mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 02:42:08 +00:00
12 lines
235 B
TypeScript
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>
|