import { DestinyDestinyItemQuantity } from './destinyDestinyItemQuantity'; /** * The conceptual \"Value\" of an item, if any was defined. See the DestinyItemValueBlockDefinition for more details. */ export interface DestinyDefinitionsDestinyInventoryItemDefinitionValue { /** * References to the items that make up this item\'s \"value\", and the quantity. */ itemValue?: Array; /** * If there\'s a localized text description of the value provided, this will be said description. */ valueDescription?: string; }