tianji/src/types/utils.ts

2 lines
71 B
TypeScript
Raw Normal View History

2023-10-05 21:09:03 +08:00
export type ExactType<T, U extends Partial<T>> = Omit<T, keyof U> & U;