Type Alias: ToNonNullable<T>
ToNonNullable<
T> =Textendsnull|undefined?never:T
Defined in: src/sdk/utils/types/UtilityTypes.ts:13
Removes null and undefined from a union type.
Type Parameters
| Type Parameter | Description |
|---|---|
T | The union type from which to remove null and undefined. |