Callbacks for batch processing progress updates.

export interface UpdateProgressCallbacks {
/** Progress update callback with optional manga title. */
updateProgress: (index: number, title?: string) => void;
}
interface UpdateProgressCallbacks {
    updateProgress: (index: number, title?: string) => void;
}

Properties

Properties

updateProgress: (index: number, title?: string) => void

Progress update callback with optional manga title.