Statistics for different match statuses.

export interface MatchFilterStats {
matched: number;
pending: number;
manual: number;
skipped: number;
}
interface MatchFilterStats {
    matched: number;
    pending: number;
    manual: number;
    skipped: number;
}

Properties

matched: number

Count of matched results.

pending: number

Count of pending results.

manual: number

Count of manual search results.

skipped: number

Count of skipped results.