@laserware/stasis
    Preparing search index...

    Type Alias PreloadedStateShapeFromReducersMapObject<M>

    PreloadedStateShapeFromReducersMapObject: M[keyof M] extends | Reducer<
        any,
        any,
        any,
    >
    | undefined
        ? {
            [P in keyof M]: M[P] extends (
                inputState: infer InputState,
                action: UnknownAction,
            ) => any
                ? InputState
                : never
        }
        : never

    Infer a combined preloaded state shape from a ReducersMapObject.

    Type Parameters

    • M

      Object map of reducers as provided to combineReducers(map: M).