Props for components that receive match handler functions.
export interface MatchHandlersProps { onManualSearch: (manga: KenmeiManga) => void; onAcceptMatch: (match: MangaMatchResult) => void; onRejectMatch: (match: MangaMatchResult) => void; onSelectAlternative: ( match: MangaMatchResult, alternativeIndex: number, ) => void; onResetToPending: (match: MangaMatchResult) => void;} Copy
export interface MatchHandlersProps { onManualSearch: (manga: KenmeiManga) => void; onAcceptMatch: (match: MangaMatchResult) => void; onRejectMatch: (match: MangaMatchResult) => void; onSelectAlternative: ( match: MangaMatchResult, alternativeIndex: number, ) => void; onResetToPending: (match: MangaMatchResult) => void;}
Handler for manual search action.
Handler for accepting a match.
Handler for rejecting a match.
Handler for selecting an alternative match.
Handler for resetting a match to pending.
Props for components that receive match handler functions.
Source