zibri
    Preparing search index...

    Type of a pagination result, consisting of the items from the current page and the total amount of items.

    type PaginationResult<T> = {
        items: T[];
        totalAmount: number;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    items: T[]

    The items of the current page.

    totalAmount: number

    The total amount of items.