Interface Paginate<T>

Type Parameters

  • T

Hierarchy

  • Paginate

Methods

  • Paginate to the next page, does not replace the object.

    Returns Promise<T & Paginate<T>>

    The next page of search results.

  • Paginate to the previous page, does not replace the object.

    Returns Promise<T & Paginate<T>>

    The previous page of search results.

  • Paginate to a specific page, does not replace the object.

    Parameters

    • page: number

      The page to navigate to. Must be an integer greater than 0.

    Returns Promise<T & Paginate<T>>

    The specified page of search results.

Generated using TypeDoc