@laserware/stasis
    Preparing search index...

    Type Alias ReducersMapObject<S, A, PreloadedState>

    ReducersMapObject: keyof PreloadedState extends keyof S
        ? {
            [K in keyof S]: Reducer<
                S[K],
                A,
                K extends keyof PreloadedState ? PreloadedState[K] : never,
            >
        }
        : never

    Object whose values correspond to different reducer functions.

    Type Parameters

    • S = any

      The combined state of the reducers.

    • A extends Action = UnknownAction

      The type of actions the reducers can potentially respond to.

    • PreloadedState = S

      The combined preloaded state of the reducers.