OptionalKeys

See source code
type OptionalKeys<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>
Prev
MatLike
Next
RequiredKeys