Skip to content

Commit 5db52ae

Browse files
committed
Formatting
1 parent 6cfd327 commit 5db52ae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/tsHelpers.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ export type IsEmptyObj<T, True, False = never> = T extends any
2424
* * versions below 3.5 will return `{}` for unresolvable interference
2525
* * versions above will return `unknown`
2626
* */
27-
export type AtLeastTS35<True, False> = [True, False][IsUnknown<ReturnType<<T>() => T>, 0, 1>]
27+
export type AtLeastTS35<True, False> = [True, False][IsUnknown<
28+
ReturnType<<T>() => T>,
29+
0,
30+
1
31+
>]
2832

2933
export type IsUnknownOrNonInferrable<T, True, False> = AtLeastTS35<
3034
IsUnknown<T, True, False>,

0 commit comments

Comments
 (0)