@@ -6,7 +6,7 @@ import type {
6
6
Reducer ,
7
7
Store ,
8
8
Action ,
9
- StoreEnhancer
9
+ StoreEnhancer ,
10
10
} from 'redux'
11
11
import { applyMiddleware } from 'redux'
12
12
import type { PayloadAction } from '@reduxjs/toolkit'
@@ -17,7 +17,7 @@ import {
17
17
ConfigureStoreOptions ,
18
18
} from '@reduxjs/toolkit'
19
19
import type { ThunkMiddleware , ThunkAction , ThunkDispatch } from 'redux-thunk'
20
- import thunk from 'redux-thunk'
20
+ import { thunk } from 'redux-thunk'
21
21
import { expectNotAny , expectType } from './helpers'
22
22
23
23
const _anyMiddleware : any = ( ) => ( ) => ( ) => { }
@@ -144,10 +144,12 @@ const _anyMiddleware: any = () => () => () => {}
144
144
{
145
145
const store = configureStore ( {
146
146
reducer : ( ) => 0 ,
147
- enhancers : [ applyMiddleware ( ( ) => next => next ) ]
147
+ enhancers : [ applyMiddleware ( ( ) => ( next ) => next ) ] ,
148
148
} )
149
149
150
- expectType < Dispatch & ThunkDispatch < number , undefined , AnyAction > > ( store . dispatch )
150
+ expectType < Dispatch & ThunkDispatch < number , undefined , AnyAction > > (
151
+ store . dispatch
152
+ )
151
153
}
152
154
153
155
configureStore ( {
@@ -159,7 +161,7 @@ const _anyMiddleware: any = () => () => () => {}
159
161
{
160
162
type SomePropertyStoreEnhancer = StoreEnhancer < { someProperty : string } >
161
163
162
- const somePropertyStoreEnhancer : SomePropertyStoreEnhancer = next => {
164
+ const somePropertyStoreEnhancer : SomePropertyStoreEnhancer = ( next ) => {
163
165
return ( reducer , preloadedState ) => {
164
166
return {
165
167
...next ( reducer , preloadedState ) ,
@@ -168,9 +170,13 @@ const _anyMiddleware: any = () => () => () => {}
168
170
}
169
171
}
170
172
171
- type AnotherPropertyStoreEnhancer = StoreEnhancer < { anotherProperty : number } >
173
+ type AnotherPropertyStoreEnhancer = StoreEnhancer < {
174
+ anotherProperty : number
175
+ } >
172
176
173
- const anotherPropertyStoreEnhancer : AnotherPropertyStoreEnhancer = next => {
177
+ const anotherPropertyStoreEnhancer : AnotherPropertyStoreEnhancer = (
178
+ next
179
+ ) => {
174
180
return ( reducer , preloadedState ) => {
175
181
return {
176
182
...next ( reducer , preloadedState ) ,
@@ -184,7 +190,9 @@ const _anyMiddleware: any = () => () => () => {}
184
190
enhancers : [ somePropertyStoreEnhancer , anotherPropertyStoreEnhancer ] ,
185
191
} )
186
192
187
- expectType < Dispatch & ThunkDispatch < number , undefined , AnyAction > > ( store . dispatch )
193
+ expectType < Dispatch & ThunkDispatch < number , undefined , AnyAction > > (
194
+ store . dispatch
195
+ )
188
196
expectType < string > ( store . someProperty )
189
197
expectType < number > ( store . anotherProperty )
190
198
}
@@ -348,7 +356,9 @@ const _anyMiddleware: any = () => () => () => {}
348
356
{
349
357
const store = configureStore ( {
350
358
reducer : reducerA ,
351
- middleware : [ ] as any as readonly [ Middleware < ( a : StateA ) => boolean , StateA > ] ,
359
+ middleware : [ ] as any as readonly [
360
+ Middleware < ( a : StateA ) => boolean , StateA >
361
+ ] ,
352
362
} )
353
363
const result : boolean = store . dispatch ( 5 )
354
364
// @ts -expect-error
@@ -532,21 +542,23 @@ const _anyMiddleware: any = () => () => () => {}
532
542
initialState : null as any ,
533
543
reducers : {
534
544
set ( state ) {
535
- return state ;
545
+ return state
536
546
} ,
537
547
} ,
538
- } ) ;
548
+ } )
539
549
540
- function configureMyStore < S > ( options : Omit < ConfigureStoreOptions < S > , 'reducer' > ) {
550
+ function configureMyStore < S > (
551
+ options : Omit < ConfigureStoreOptions < S > , 'reducer' >
552
+ ) {
541
553
return configureStore ( {
542
554
...options ,
543
555
reducer : someSlice . reducer ,
544
- } ) ;
556
+ } )
545
557
}
546
558
547
- const store = configureMyStore ( { } ) ;
559
+ const store = configureMyStore ( { } )
548
560
549
- expectType < Function > ( store . dispatch ) ;
561
+ expectType < Function > ( store . dispatch )
550
562
}
551
563
552
564
{
0 commit comments