TMergeInner
Bun

type

__internal.MergeInner

type MergeInner<A, B> = Omit<A, KeysInBoth<A, B>> & Omit<B, KeysInBoth<A, B>> & { [K in KeysInBoth<A, B>]: A[Key] | B[Key] }

Referenced types

type KeysInBoth<A, B> = Extract<keyof A, keyof B>