interface BookDetailsEditorOwnProps {
    bookUrl?: string;
    canSuppress: boolean;
    csrfToken: string;
    refreshCatalog?: () => Promise<any>;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
}

Properties

bookUrl?: string
canSuppress: boolean
csrfToken: string
refreshCatalog?: () => Promise<any>
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>