Skip to content

Commit

Permalink
be extra thorough
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Nov 22, 2024
1 parent 3cd0225 commit 504c682
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/masking/internal/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ type MergeUnions<TUnion> = MergeUnionsAcc<
type DistributedRequiredExclude<T, U> =
T extends any ?
Required<T> extends Required<U> ?
never
Required<U> extends Required<T> ?
never
: T
: T
: T;

Expand Down

0 comments on commit 504c682

Please sign in to comment.