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

Hierarchy (View Summary)

Properties

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