Type Alias WithOptionalPartial<T, K>

WithOptionalPartial: Omit<T, K> & { [P in K]?: Partial<T[P]> }

Type Parameters

  • T
  • K extends keyof T