One row of the Shared Gear tab: a gear item plus the member carrying it.

interface SharedGearEntry<TGear> {
    carrierName: string;
    carrierUuid: string;
    gear: TGear;
}

Type Parameters

Properties

carrierName: string

Display name of the member actor that carries it.

carrierUuid: string

UUID of the member actor that carries it.

gear: TGear

The shared gear item.