@tempots/std

PartialBy type

Creates a new type by making the specified key K of T optional.

Signature:

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

References: Merge