import type { Chapter } from './Chapter.js'; import type { SourceManga } from './SourceManga.js'; export interface TrackedMangaChapterReadAction { readonly id: string; readonly sourceManga: SourceManga; readonly readChapter?: Chapter; readonly chapterId: string; readonly chapterSourceId: string; readonly chapterMangaId: string; readonly chapterNum: number; readonly chapterVolume?: number; readonly creationDate: Date; readonly errorCount: number; readonly lastErrorDate?: Date; } //# sourceMappingURL=TrackedMangaChapterReadAction.d.ts.map