Testing page generation

This commit is contained in:
ZXY101
2023-08-03 10:08:04 +02:00
parent 00f438a290
commit 07e007aaa7
26 changed files with 564 additions and 92 deletions

View File

@@ -1,6 +1,12 @@
export type Manga = {
export type Volume = {
title: string;
cover: string;
currentPage: number;
totalPages: number;
}
export type Manga = {
title: string;
cover: string;
volumes: Volume[];
};