type alias MergeAllSets
Merge all sets types definitions from keys present in both objects
Type Parameters
TUX = PartialByType<T, Set<unknown>>Y = PartialByType<U, Set<unknown>>Z = [K in keyof X & keyof Y]: Set<SetValueType<X[K]> | SetValueType<Y[K]>>