Type alias CustomPartial<T, K>

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

Of the properties of the type specified in the first argument, only those with the key specified in the second argument are made Partial.

Type Parameters

  • T extends object

  • K extends keyof T

Generated using TypeDoc