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;}
Current progress count.
Total number of items to process.
Title currently being processed.
Progress state of the matching process.
Source