Type alias PartialPick<T, U>

PartialPick<T, U>: T extends T
    ? Omit<T, U> & Partial<Pick<T, U>>
    : never

Apply Partial<> on the selected properties.

Type Parameters

Generated using TypeDoc