Interface ProgressEvent<T, D>

Progress events are emitted during long running operations

interface ProgressEvent<T, D> {
    detail: D;
    type: T;
}

Type Parameters

  • T extends string = any
  • D = unknown

Implemented by

Properties

Properties

detail: D

Context-specific event information

type: T

The event type