import { DestinyDefinitionsCommonDestinyIconSequenceDefinition } from './destinyDefinitionsCommonDestinyIconSequenceDefinition'; /** * Sometimes, but not frequently, these unlock flags also have human readable information: usually when they are being directly tested for some requirement, in which case the string is a localized description of why the requirement check failed. */ export interface DestinyDefinitionsDestinyUnlockDefinitionDisplayProperties { description?: string; name?: string; /** * Note that \"icon\" is sometimes misleading, and should be interpreted in the context of the entity. For instance, in Destiny 1 the DestinyRecordBookDefinition\'s icon was a big picture of a book. But usually, it will be a small square image that you can use as... well, an icon. They are currently represented as 96px x 96px images. */ icon?: string; iconSequences?: Array; /** * If this item has a high-res icon (at least for now, many things won\'t), then the path to that icon will be here. */ highResIcon?: string; hasIcon?: boolean; }