AutoBE
    Preparing search index...

    Page information.

    interface IPagination {
        current: number & Type<"uint32">;
        limit: number & Type<"uint32">;
        pages: number & Type<"uint32">;
        records: number & Type<"uint32">;
    }
    Index

    Properties

    current: number & Type<"uint32">

    Current page number.

    limit: number & Type<"uint32">

    Limitation of records per a page.

    100
    
    pages: number & Type<"uint32">

    Total pages.

    Equal to records / limit with ceiling.

    records: number & Type<"uint32">

    Total records in the database.