Amend dynamic imports
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user