interface BookDetailsContainerContext {
    admin: default;
    csrfToken: string;
    editorStore: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
    library: (collectionUrl: string, bookUrl: string) => string;
    tab: string;
}

Properties

admin: default
csrfToken: string
editorStore: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>
library: (collectionUrl: string, bookUrl: string) => string
tab: string