Skip to content

Commit

Permalink
OmitDeep: Fix internally imported type (#824)
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy-mitchell authored Mar 5, 2024
1 parent 8bfcd75 commit 2061925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/merge-deep.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import type {EnforceOptional} from './enforce-optional';
/**
Deeply simplifies an object excluding iterables and functions. Used internally to improve the UX and accept both interfaces and type aliases as inputs.
*/
type SimplifyDeep<Type> = ConditionalSimplifyDeep<Type, Function | Iterable<unknown>, object>;
export type SimplifyDeep<Type> = ConditionalSimplifyDeep<Type, Function | Iterable<unknown>, object>;

/**
Try to merge two record properties or return the source property value, preserving `undefined` properties values in both cases.
Expand Down

0 comments on commit 2061925

Please sign in to comment.