From 76dc1f17cfce76a6029fe9b871da3c24525b0c12 Mon Sep 17 00:00:00 2001 From: VinceOps Date: Tue, 4 Oct 2022 17:09:17 +0200 Subject: [PATCH] fix(toolkit): export "ThunkMiddleware" --- packages/toolkit/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/toolkit/src/index.ts b/packages/toolkit/src/index.ts index a0690f584f..580a3412d4 100644 --- a/packages/toolkit/src/index.ts +++ b/packages/toolkit/src/index.ts @@ -16,7 +16,7 @@ export type { ParametricSelector, } from 'reselect' export { createDraftSafeSelector } from './createDraftSafeSelector' -export type { ThunkAction, ThunkDispatch } from 'redux-thunk' +export type { ThunkAction, ThunkDispatch, ThunkMiddleware } from 'redux-thunk' // We deliberately enable Immer's ES5 support, on the grounds that // we assume RTK will be used with React Native and other Proxy-less