Add mock catalog

This commit is contained in:
ZXY101
2023-08-01 16:29:02 +02:00
parent 3c2199b06a
commit 995c6a98c5
20 changed files with 291 additions and 100 deletions

6
src/lib/types/catalog.ts Normal file
View File

@@ -0,0 +1,6 @@
export type Manga = {
title: string;
cover: string;
currentPage: number;
totalPages: number;
};