Skip to content

Commit 588354f

Browse files
committed
remove unecessary export type
1 parent 1fe0b5b commit 588354f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/context.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export type SplitTypes<T, U> = U extends T ? (Exclude<T, U> extends never ? T : Exclude<T, U>) : T;
1+
type SplitTypes<T, U> = U extends T ? (Exclude<T, U> extends never ? T : Exclude<T, U>) : T;
22

33
export type SplitUndefined<T> = SplitTypes<T, undefined>;
44

0 commit comments

Comments
 (0)