_Pick<V, K>: Extract<K, keyof V> extends never ? Partial<V> : Pick<V, Extract<K, keyof V>>

Type Parameters

  • V

  • K extends string