Command for rejecting/skipping a match.

export class RejectMatchCommand extends BaseCommand {
constructor(
matchIndex: number,
beforeState: MangaMatchResult,
afterState: MangaMatchResult,
onExecute: OnExecuteCallback,
) {
super(
matchIndex,
beforeState,
afterState,
onExecute,
CommandType.REJECT_MATCH,
`Reject match for "${beforeState.kenmeiManga.title}"`,
);
}
}

Hierarchy (View Summary)

Constructors

Methods