Interface ItemCount

Holds information about the number of items.

interface ItemCount {
    count: number;
    hasMore: boolean;
    totalCount: number;
}

Properties

count: number

The number of available items in the dataset.

hasMore: boolean

Indicates that count < fullCount and that the data source has more items which can not be accessed.

totalCount: number

The number of maximal items in the dataSource. -1 indicates that this number is not available.

Generated using TypeDoc