Home > @infiniteobjects/type-utils > SetOptionalAsNullable
Sets the optional properties as null instead of undefined
Signature:
export type SetOptionalAsNullable<T> = Except<T, OptionalPropertyOf<T>> & SetNullable<Required<Pick<T, OptionalPropertyOf<T>>>>;
References: Except, OptionalPropertyOf, SetNullable