/** * If this item has related items in a \"Gear Set\", this will be non-null and the relationships defined herein. */ export interface DestinyDefinitionsDestinyInventoryItemDefinitionGearset { /** * The maximum possible number of items that can be collected. */ trackingValueMax?: number; /** * The list of hashes for items in the gearset. Use them to look up DestinyInventoryItemDefinition entries for the items in the set. */ itemList?: Array; }