@tempots/std

RequiredBy type

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

Signature:

export type RequiredBy<T, K extends keyof T> = Merge<Omit<T, K>, Required<Pick<T, K>>>;

References: Merge