Interface ObservableQueueDelta<T>

Data indicating the change in state for a location in the Queue

interface ObservableQueueDelta<T> {
    added: boolean;
    item?: T;
}

Type Parameters

  • T

Properties

Properties

added: boolean
item?: T