@tusss/ood
    Preparing search index...

    Interface PaginationParams

    Represents the parameters for pagination, specifying the current page and item limit.

    interface PaginationParams {
        page: number;
        perPage: number;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Properties

    page: number

    The 1-based index of the current page.

    perPage: number

    The maximum number of items to return per page.