Handle database

This commit is contained in:
ZXY101
2023-08-09 10:27:58 +02:00
parent 4e645467bb
commit 416b832f63
17 changed files with 14576 additions and 258 deletions

View File

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