A container paired with the gear items it holds.

interface ContainerNode<T> {
    container: T;
    items: T[];
}

Type Parameters

  • T

Properties

Properties

container: T

The container item.

items: T[]

The gear items nested inside the container.