Undefined

Undefined<Type>

A generic type Undefined indicates generic type variable Type as undefinedarrow-up-right. It takes generic type variable Type causing other types than undefinedarrow-up-right its change to neverarrow-up-right.

undefined.type.ts
type Undefined<Type> = Type extends undefined ? Type : never;

Generic type variables

Type

Generic type variable that cannot be different than undefinedarrow-up-right.

Last updated