Add OpenAPI

This commit is contained in:
2025-07-05 22:32:52 +02:00
parent acd910e013
commit 54a4f7e08a
98 changed files with 4816 additions and 696 deletions

View File

@@ -13,6 +13,9 @@
*/
// May contain unused imports in some cases
// @ts-ignore
import type { CardPrint } from './card-print';
/**
*
@@ -34,9 +37,9 @@ export interface Deck {
'name': string;
/**
*
* @type {{ [key: string]: number; }}
* @type {Set<CardPrint>}
* @memberof Deck
*/
'cards': { [key: string]: number; };
'prints': Set<CardPrint>;
}