1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add firstSet and lastSet properties to Serie interface (#591)

This commit is contained in:
David Leiva
2024-12-01 16:35:26 -06:00
committed by GitHub
parent 48a984ef50
commit 121db30389
2 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,8 @@ export interface SerieResume {
* /series/:id endpoint
*/
export interface Serie extends SerieResume {
firstSet: SetResume;
lastSet: SetResume;
sets: Array<SetResume>;
}