API Reference
SearchQuery
Defined in: tools/builtin/builtin.types.ts:158
A regex search request handed to the backend.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
ignoreCase? | boolean | Case-insensitive matching when true. | tools/builtin/builtin.types.ts:164 |
maxResults? | number | Upper bound on the number of matches to return. | tools/builtin/builtin.types.ts:166 |
path? | string | File or directory to search under; the backend decides the default root. | tools/builtin/builtin.types.ts:162 |
pattern | string | A regular expression matched against file contents. | tools/builtin/builtin.types.ts:160 |