Callbacks for batch processing progress updates.
export interface UpdateProgressCallbacks { /** Progress update callback with optional manga title. */ updateProgress: (index: number, title?: string) => void;} Copy
export interface UpdateProgressCallbacks { /** Progress update callback with optional manga title. */ updateProgress: (index: number, title?: string) => void;}
Progress update callback with optional manga title.
Callbacks for batch processing progress updates.
Source