Skip to content

Commit 958a09a

Browse files
committed
lint
1 parent 64c1919 commit 958a09a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/getDefaultMiddleware.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@ export type ThunkMiddlewareFor<
3737
? never
3838
: O extends { thunk: { extraArgument: infer E } }
3939
? ThunkMiddleware<S, AnyAction, E>
40-
/*
41-
* The ThunkMiddleware with a `null` ExtraArgument is here to provide backwards-compatibility.
42-
*/
43-
: ThunkMiddleware<S, AnyAction, null> | ThunkMiddleware<S, AnyAction>
40+
:
41+
| ThunkMiddleware<S, AnyAction, null> //The ThunkMiddleware with a `null` ExtraArgument is here to provide backwards-compatibility.
42+
| ThunkMiddleware<S, AnyAction>
4443

4544
/**
4645
* Returns any array containing the default middleware installed by

0 commit comments

Comments
 (0)