Home > types > PartialBy
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>>;