Props for the MatchingResume component.

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

Properties

pendingMangaCount: number

Number of manga pending from a previous session.

onResumeMatching: () => void

Callback to resume the matching process.

onCancelResume: () => void

Callback to cancel resuming and continue normally.