2 lines
71 B
TypeScript
2 lines
71 B
TypeScript
|
export type ExactType<T, U extends Partial<T>> = Omit<T, keyof U> & U;
|