Props for the ResumeNotification component.

export interface ResumeNotificationProps {
pendingMangaCount: number;
onResumeMatching: () => void;
onCancelResume: () => void;
}
interface ResumeNotificationProps {
    pendingMangaCount: number;
    onResumeMatching: () => void;
    onCancelResume: () => void;
}

Properties

pendingMangaCount: number

The number of manga pending from a previous session.

onResumeMatching: () => void

Callback to resume the matching process.

onCancelResume: () => void

Callback to cancel resuming the matching process.