Files
dex-ui/src/app/openapi/model/card.ts
2025-05-29 17:12:16 +02:00

29 lines
776 B
TypeScript

/**
* dex API
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { MonsterCardType } from './monster-card-type';
import { TrapCard } from './trap-card';
import { TrapCardType } from './trap-card-type';
import { Attribute } from './attribute';
import { CardType } from './card-type';
import { LinkArrow } from './link-arrow';
import { SpellCardType } from './spell-card-type';
import { MonsterCard } from './monster-card';
import { SpellCard } from './spell-card';
import { CardPrint } from './card-print';
import { MonsterType } from './monster-type';
/**
* @type Card
* @export
*/
export type Card = MonsterCard | SpellCard | TrapCard;