MCPcopy
hub / github.com/redux-loop/redux-loop / StoreCreator

Interface StoreCreator

index.d.ts:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3export type UnknownAction = AnyAction | never;
4
5export 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
13type WithDefaultActionHandling<T extends AnyAction> =
14 | T

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected