Tranga-Website/Website/modules/interfaces/IChapter.tsx

10 lines
215 B
TypeScript
Raw Normal View History

2024-10-20 02:09:12 +02:00
import IManga from "./IManga";
export default interface IChapter{
parentManga: IManga;
name: string | undefined;
volumeNumber: string;
chapterNumber: string;
url: string;
fileName: string;
}