Home > @infiniteobjects/type-utils > SetNonNullableKeys
Create a type that makes the given keys notNullable. The remaining keys are kept as is.
Signature:
export type SetNonNullableKeys<BaseType, Keys extends keyof BaseType> = Merge<Except<BaseType, Keys>, SetNonNullable<Pick<BaseType, Keys>>>;
References: Merge, Except, SetNonNullable