Type alias PaginatedSearchResults<SearchResult>

PaginatedSearchResults<SearchResult>: {
    hasNext?: boolean;
    numPages?: number;
    numResults?: number;
    pageSize?: number;
} & SearchResults<SearchResult>

The type of object a component that uses the LisPaginatedSearchMixin mixin expects back when it performs a search.

Type Parameters

  • SearchResult

    The type to expect in the results array of a paginated search results object.

Type declaration

  • Optional hasNext?: boolean
  • Optional numPages?: number
  • Optional numResults?: number
  • Optional pageSize?: number

Generated using TypeDoc