vtils

Home > types > PartialBy

PartialBy type

Mark some properties as optional, leaving others unchanged

Signature:

export declare type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;