interface ResultListProps {
    fetchMoreResultsActionCreator?: () => AsyncThunkAction<
        unknown,
        void,
        any,
    >;
    options?: ResultListOptions;
}

Properties

fetchMoreResultsActionCreator?: () => AsyncThunkAction<unknown, void, any>

The action creator to build the fetchMoreResults action.

The options for the ResultList controller.