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

Last Updated: 19 April, 2024