Decision result for manga inclusion with optional score adjustment.

export interface InclusionResult {
shouldInclude: boolean;
adjustedScore: number;
}
interface InclusionResult {
    shouldInclude: boolean;
    adjustedScore: number;
}

Properties

shouldInclude: boolean

Whether the manga should be included in results.

adjustedScore: number

The match score, potentially adjusted based on match quality.