workflow.copywithpartial.md

January 18, 2023 ยท View on GitHub

Home > @datashaper/workflow > CopyWithPartial

CopyWithPartial type

Signature:

export type CopyWithPartial<T, K extends keyof T> = Omit<T, K> & Partial<T>;