UNPKG

react-form-with-constraints

Version:
9 lines (8 loc) 204 B
/** * Make all properties in T nullable * * https://github.com/microsoft/TypeScript/blob/v4.0.5/src/lib/es5.d.ts#L1439-L1441 */ export declare type Nullable<T> = { [P in keyof T]: T[P] | null; };