mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-04-19 14:53:20 +02:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
export default interface IChapter{
|
|
chapterId: string;
|
|
volumeNumber: number;
|
|
chapterNumber: string;
|
|
url: string;
|
|
title: string | undefined;
|
|
archiveFileName: string;
|
|
downloaded: boolean;
|
|
parentMangaId: string;
|
|
} |