NonFunctionPropertiesOf<T> Type alias
Produces a type consisting of all of the public properties of T
except for those of type function
.
see NonFunctionPropertyNamesOf for potential pitfalls when used in conjunction with the object spread operator.
NonFunctionPropertiesOf = Pick<T, NonFunctionPropertyNamesOf<T>>
Defined in
- core/bentley/src/UtilityTypes.ts Line 82
Last Updated: 20 June, 2023