| 618 | * Options that apply to file search. |
| 619 | */ |
| 620 | export interface FileSearchOptions extends SearchOptions { |
| 621 | /** |
| 622 | * The maximum number of results to be returned. |
| 623 | */ |
| 624 | maxResults?: number; |
| 625 | |
| 626 | /** |
| 627 | * A CancellationToken that represents the session for this search query. If the provider chooses to, this object can be used as the key for a cache, |
| 628 | * and searches with the same session object can search the same cache. When the token is cancelled, the session is complete and the cache can be cleared. |
| 629 | */ |
| 630 | session?: CancellationToken; |
| 631 | } |
| 632 | |
| 633 | /** |
| 634 | * A FileSearchProvider provides search results for files in the given folder that match a query string. It can be invoked by quickopen or other extensions. |
nothing calls this directly
no outgoing calls
no test coverage detected