Returns a read-only progress view for an operation.
The view reads the current operation state, so it reflects later Operation.update calls. Returns undefined when the operation or tracker is missing.
undefined
const tracker = wrapProgressTracker(op);if (tracker) console.log(tracker.description()); Copy
const tracker = wrapProgressTracker(op);if (tracker) console.log(tracker.description());
Returns a read-only progress view for an operation.
The view reads the current operation state, so it reflects later Operation.update calls. Returns
undefinedwhen the operation or tracker is missing.