@tempots/std > PartialBy
Creates a new type by making the specified key K of T optional.
K
T
Signature:
export type PartialBy<T, K extends keyof T> = Merge<Omit<T, K>, Partial<Pick<T, K>>>;
References: Merge