Type Alias OmitNeverValueKeys<T>

OmitNeverValueKeys: Omit<T, NeverValueKeys<T>>

Omits the keys of an object type that have never as their value type.

Type Parameters

  • T extends object

    The object type to omit keys from.

8Crafter