@tusss/ood
    Preparing search index...

    Interface PaginationResultParams

    Represents the parameters for a pagination result, extending standard pagination parameters with total item count.

    interface PaginationResultParams {
        page: number;
        perPage: number;
        total: 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.

    total: number

    The total number of items across all pages.