Command for selecting a result from manual search.

export class SelectSearchMatchCommand extends BaseCommand {
constructor(
matchIndex: number,
beforeState: MangaMatchResult,
afterState: MangaMatchResult,
onExecute: OnExecuteCallback,
) {
super(
matchIndex,
beforeState,
afterState,
onExecute,
CommandType.SELECT_SEARCH_MATCH,
`Select manual search result for "${beforeState.kenmeiManga.title}"`,
);
}
}

Hierarchy (View Summary)

Constructors

Methods