Type alias PartialBy<T, K>

PartialBy<T, K>: Omit<T, K> & Partial<Pick<T, K>>

Makes specific field as optional.

Type Parameters

  • T

  • K extends keyof T

Generated using TypeDoc