interface ContextProviderProps {
    children?: ReactNode;
    config: Partial<ConfigurationSettings>;
    key?: Key;
    ref?: LegacyRef<default>;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
}

Hierarchy

Properties

children?: ReactNode
config: Partial<ConfigurationSettings>
key?: Key
ref?: LegacyRef<default>
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>