Axinom Mosaic Libraries
    Preparing search index...

    Interface DataProviderResults<T>

    interface DataProviderResults<T extends Data> {
        data: T[];
        filteredCount?: number;
        hasMoreData: boolean;
        pagingInformation?: unknown;
        totalCount: number;
    }

    Type Parameters

    Index

    Properties

    data: T[]

    Paginated data results

    filteredCount?: number

    Amount of results after filters are applied

    hasMoreData: boolean

    Determines if requests for more paginated data should continue (default: true)

    pagingInformation?: unknown

    Additional paging information to be sent. This property will be reset to undefined when a new set of data is requested.

    totalCount: number

    Total amount of results