Interface ObservableStackItem<T>

State for an item in the Stack

interface ObservableStackItem<T> {
    index: number;
    item: T;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

index: number
item: T