Theia API Documentation v1.65.0
    Preparing search index...

    Information collected when text search is complete.

    interface TextSearchComplete {
        limitHit?: boolean;
    }
    Index

    Properties

    Properties

    limitHit?: boolean

    Whether the search hit the limit on the maximum number of search results. maxResults on TextSearchOptions specifies the max number of results.

    • If exactly that number of matches exist, this should be false.
    • If maxResults matches are returned and more exist, this should be true.
    • If search hits an internal limit which is less than maxResults, this should be true.