interface FoldedCollection {
    children: FoldedResult[];
    isLoadingMoreResults: boolean;
    moreResultsAvailable: boolean;
    result: Result;
}

Hierarchy (View Summary)

Properties

children: FoldedResult[]

The children of this result sorted in the same order as the search results.

isLoadingMoreResults: boolean

Whether there is an ongoing query to add more results to the collection.

moreResultsAvailable: boolean

Whether more results might be available in the collection.

result: Result

The result at this position in the collection.