Interface ProgressEventLike

Structural subset of core/progress.ts's ProgressEvent that the accumulator consumes — kept local so this module stays import-free.

interface ProgressEventLike {
    completed: number;
    elapsedMs: number;
    memoryMb?: number;
    phase: string;
    total?: number;
}

Properties

completed: number
elapsedMs: number
memoryMb?: number
phase: string
total?: number