Represents the progress state of the matching process.
export interface MatchingProgress { current: number; total: number; currentTitle: string | undefined;} Copy
export interface MatchingProgress { current: number; total: number; currentTitle: string | undefined;}
The current progress count.
The total number of items to process.
The title currently being processed.
Represents the progress state of the matching process.
Source