A type that excludes null from type T.
null
T
Type Str = ExcludeNullable<string | null> // Result: string Copy
Type Str = ExcludeNullable<string | null> // Result: string
A type that excludes
null
from typeT
.