Add virtual scrolling card component

Add OpenAPI client(s)
This commit is contained in:
2025-04-24 20:53:25 +02:00
parent 39377d7dfe
commit 5d05dbd041
31 changed files with 2588 additions and 167 deletions

View File

@@ -0,0 +1,30 @@
/**
* 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.
*/
export interface Card {
id?: number;
description: string;
pendulumDescription?: string | null;
defense?: number | null;
attack?: number | null;
health?: number | null;
level?: number | null;
linkValue?: number | null;
name: string;
type: string;
frameType: string;
archetype?: string | null;
race?: string | null;
attribute?: string | null;
decks: { [key: string]: number; };
imageApiPath: string;
}