MCPcopy Create free account
hub / github.com/dethcrypto/dethcode / FileSearchOptions

Interface FileSearchOptions

packages/ethereum-viewer/src/vscode.proposed.d.ts:620–631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected