Type Alias PartialBy<T, K>

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

Make selected properties in T optional.

Type Parameters

  • T

    The type to make partial.

  • K extends keyof T

    The keys of T to make optional.