Skip to content

Commit 2061925

Browse files
OmitDeep: Fix internally imported type (#824)
1 parent 8bfcd75 commit 2061925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/merge-deep.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import type {EnforceOptional} from './enforce-optional';
1515
/**
1616
Deeply simplifies an object excluding iterables and functions. Used internally to improve the UX and accept both interfaces and type aliases as inputs.
1717
*/
18-
type SimplifyDeep<Type> = ConditionalSimplifyDeep<Type, Function | Iterable<unknown>, object>;
18+
export type SimplifyDeep<Type> = ConditionalSimplifyDeep<Type, Function | Iterable<unknown>, object>;
1919

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

0 commit comments

Comments
 (0)