MangaDetails component improved drastically

This commit is contained in:
Aria Moradi
2021-03-17 19:17:03 +03:30
parent 149107e749
commit 26cc2f2c96
8 changed files with 230 additions and 55 deletions

View File

@@ -21,12 +21,28 @@ interface ISource {
history: any
}
interface IManga {
interface IMangaCard {
id: number
sourceId?: string
title: string
thumbnailUrl: string
inLibrary?: boolean
}
interface IManga {
id: number
sourceId: string
url: string
title: string
thumbnailUrl: string
artist: string
author: string
description: string
genre: string
status: string
inLibrary: boolean
source: ISource
}
interface IChapter {