| 3 | export type UnknownAction = AnyAction | never; |
| 4 | |
| 5 | export interface StoreCreator { |
| 6 | <S, A extends Action>( |
| 7 | reducer: LoopReducer<S, A>, |
| 8 | preloadedState: S | undefined, |
| 9 | enhancer: StoreEnhancer<S> |
| 10 | ): Store<S>; |
| 11 | } |
| 12 | |
| 13 | type WithDefaultActionHandling<T extends AnyAction> = |
| 14 | | T |
nothing calls this directly
no outgoing calls
no test coverage detected