map.apps Bundle APIs 4.20.2
    Preparing search index...

    Interface ItemCount

    Holds information about the number of items.

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

    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.