Home > @i2analyze/i2connect > utility > PropertyTypeDisplayNames
utility.PropertyTypeDisplayNames type
A utility type that represents the display names of the property types of a particular item type.
Signature:
type PropertyTypeDisplayNames<TItemType extends schema.IItemType> = TItemType extends schema.IItemType<infer PropertyTypes> ? keyof PropertyTypes : never;
References: schema.IItemType
Introduced: API version 2.0
Type Parameters
Parameter | Type | Description |
---|---|---|
TItemType | extends schema.IItemType | The item type to extract property type display names from. |