• Build a redux store with reducers specific to the admin interface as well as reducers from web-opds-client.

    Parameters

    Returns EnhancedStore<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
        UnknownAction,
        Tuple<
            [
                StoreEnhancer<
                    {
                        dispatch: ThunkDispatch<
                            {
                                api: CombinedState<{}, any, "api">;
                                bookEditor: BookState;
                                catalog: State;
                                editor: CombinedState<State>;
                            },
                        >;
                    },
                >,
                StoreEnhancer,
            ],
        >,
    >