Add OpenAPI
This commit is contained in:
@@ -13,12 +13,6 @@
|
||||
*/
|
||||
|
||||
|
||||
// May contain unused imports in some cases
|
||||
// @ts-ignore
|
||||
import type { NewCard } from './new-card';
|
||||
// May contain unused imports in some cases
|
||||
// @ts-ignore
|
||||
import type { RegionalSet } from './regional-set';
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -28,27 +22,27 @@ import type { RegionalSet } from './regional-set';
|
||||
export interface CardPrint {
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @type {string}
|
||||
* @memberof CardPrint
|
||||
*/
|
||||
'id'?: number;
|
||||
/**
|
||||
*
|
||||
* @type {RegionalSet}
|
||||
* @memberof CardPrint
|
||||
*/
|
||||
'regionalSet': RegionalSet;
|
||||
/**
|
||||
*
|
||||
* @type {NewCard}
|
||||
* @memberof CardPrint
|
||||
*/
|
||||
'card': NewCard;
|
||||
'id': string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof CardPrint
|
||||
*/
|
||||
'imageApiPath': string;
|
||||
'name': string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof CardPrint
|
||||
*/
|
||||
'regionalName'?: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof CardPrint
|
||||
*/
|
||||
'rarity': string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user