2 lines
81 B
TypeScript
Executable File
2 lines
81 B
TypeScript
Executable File
export type PartialWithRequired<T, K extends keyof T> = Pick<T, K> & Partial<T>;
|