Amend dynamic imports

This commit is contained in:
2025-07-15 11:04:21 +02:00
parent bb114f16e0
commit 79814b18b1
21 changed files with 203 additions and 98 deletions

View File

@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**cardType** | [**CardType**](CardType.md) | | [default to undefined]
**description** | **string** | | [default to undefined]
**name** | **string** | | [default to undefined]
**cardPrints** | [**Set<CardPrint>**](CardPrint.md) | | [default to undefined]
**cardPrints** | [**Array<CardPrint>**](CardPrint.md) | | [default to undefined]
**monsterEffect** | **string** | | [optional] [default to undefined]
**attack** | **number** | | [optional] [default to undefined]
**defense** | **number** | | [optional] [default to undefined]

View File

@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**cardType** | [**CardType**](CardType.md) | | [default to undefined]
**description** | **string** | | [default to undefined]
**name** | **string** | | [default to undefined]
**cardPrints** | [**Set<CardPrint>**](CardPrint.md) | | [default to undefined]
**cardPrints** | [**Array<CardPrint>**](CardPrint.md) | | [default to undefined]
**monsterEffect** | **string** | | [optional] [default to undefined]
**attack** | **number** | | [optional] [default to undefined]
**defense** | **number** | | [optional] [default to undefined]

View File

@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**cardType** | [**CardType**](CardType.md) | | [default to undefined]
**description** | **string** | | [default to undefined]
**name** | **string** | | [default to undefined]
**cardPrints** | [**Set<CardPrint>**](CardPrint.md) | | [default to undefined]
**cardPrints** | [**Array<CardPrint>**](CardPrint.md) | | [default to undefined]
**type** | [**SpellCardType**](SpellCardType.md) | | [default to undefined]
## Example

View File

@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**cardType** | [**CardType**](CardType.md) | | [default to undefined]
**description** | **string** | | [default to undefined]
**name** | **string** | | [default to undefined]
**cardPrints** | [**Set<CardPrint>**](CardPrint.md) | | [default to undefined]
**cardPrints** | [**Array<CardPrint>**](CardPrint.md) | | [default to undefined]
**type** | [**TrapCardType**](TrapCardType.md) | | [default to undefined]
## Example

View File

@@ -67,10 +67,10 @@ export interface MonsterCard {
'name': string;
/**
*
* @type {Set<CardPrint>}
* @type {Array<CardPrint>}
* @memberof MonsterCard
*/
'cardPrints': Set<CardPrint>;
'cardPrints': Array<CardPrint>;
/**
*
* @type {string}

View File

@@ -55,10 +55,10 @@ export interface SpellCard {
'name': string;
/**
*
* @type {Set<CardPrint>}
* @type {Array<CardPrint>}
* @memberof SpellCard
*/
'cardPrints': Set<CardPrint>;
'cardPrints': Array<CardPrint>;
/**
*
* @type {SpellCardType}

View File

@@ -55,10 +55,10 @@ export interface TrapCard {
'name': string;
/**
*
* @type {Set<CardPrint>}
* @type {Array<CardPrint>}
* @memberof TrapCard
*/
'cardPrints': Set<CardPrint>;
'cardPrints': Array<CardPrint>;
/**
*
* @type {TrapCardType}