import { TrackedMangaChapterReadAction } from ".."; export interface TrackerActionQueue { queuedChapterReadActions(): Promise; retryChapterReadAction(chapterReadAction: TrackedMangaChapterReadAction): Promise; discardChapterReadAction(chapterReadACtion: TrackedMangaChapterReadAction): Promise; retryAllChapterReadAction(): Promise; discardAllChapterReadAction(): Promise; }