RemoveNullability<T>
RemoveNullability<
T> ={ [k in keyof T]: NonNullable<T[k]> }
Defined in: packages/core/src/types/basic.ts:225
Utility type to make all properties non-nullable.
Type Parameters
| Type Parameter |
|---|
T extends Record<string, unknown> |
caution
API documentation is generated from the latest commit on the main branch. It may be somewhat inconsistent with official releases of React Query Builder.