PickNullable
Make a type nullable.
Signature
type PickNullable<T, K extends keyof T> = { [P in K]: T[P] | null;} & Omit<T, K>;Members
This export does not declare public properties or methods in the generated declaration file.
Make a type nullable.
type PickNullable<T, K extends keyof T> = { [P in K]: T[P] | null;} & Omit<T, K>;This export does not declare public properties or methods in the generated declaration file.