Undefined
Undefined<Type>
Undefined<Type>A generic type Undefined indicates generic type variable Type as undefined. It takes generic type variable Type causing other types than undefined its change to never.
type Undefined<Type> = Type extends undefined ? Type : never;Generic type variables
Type
TypeGeneric type variable that cannot be different than undefined.
Last updated
Was this helpful?