refacto: tentative de refacto

This commit is contained in:
Julien Froidefond
2025-02-17 16:37:48 +01:00
parent 7ee99ac31a
commit ba725bb1a3
28 changed files with 195 additions and 170 deletions

View File

@@ -11,13 +11,13 @@ export interface Series {
booksUnreadCount: number;
booksInProgressCount: number;
metadata: {
status: string;
status: "ENDED" | "ONGOING" | "ABANDONED" | "HIATUS";
created: string;
lastModified: string;
title: string;
titleSort: string;
summary: string;
readingDirection: string;
readingDirection: "LEFT_TO_RIGHT" | "RIGHT_TO_LEFT" | "VERTICAL" | "WEBTOON";
publisher: string;
ageRating: number;
language: string;
@@ -47,4 +47,6 @@ export interface Series {
}>;
};
deleted: boolean;
oneshot: boolean;
favorite: boolean;
}