Represents the progress state of the matching process.

export interface MatchingProgress {
current: number;
total: number;
currentTitle: string | undefined;
}
interface MatchingProgress {
    current: number;
    total: number;
    currentTitle: undefined | string;
}

Properties

current: number

The current progress count.

total: number

The total number of items to process.

currentTitle: undefined | string

The title currently being processed.