feat(types): add MergeOmitting type helper for type merging with omission

This commit is contained in:
2026-03-06 18:48:58 -06:00
parent 59fc3bf686
commit 03b988b5f5

5
src/types/helpers.ts Normal file
View File

@@ -0,0 +1,5 @@
export type MergeOmitting<ReplaceableType, ReplacerType> = Omit<
ReplaceableType,
keyof ReplacerType
> &
ReplacerType