mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
import { CardSimple } from "./Card";
|
|
import { List } from "./General";
|
|
|
|
export type HpSingle = {
|
|
hp: number
|
|
cards: Array<CardSimple>
|
|
}
|
|
|
|
export type HpSimple = number
|
|
|
|
export type HpList = List<HpSimple>
|