type alias IsNullable
Checks if type T is possibly null or undefined.
Type Parameters
TDefinition
Extract<T, null | undefined> extends never ? false : trueChecks if type T is possibly null or undefined.
TExtract<T, null | undefined> extends never ? false : true