deepkit-framework
deepkit-framework copied to clipboard
[Type] Processor: add support for HasIntersection
export type HasIntersection<T, U> = [T & U] extends [never] ? T : U;