(
path: string,
query: string,
options?: StateSearchOptions
)
| 197 | } |
| 198 | |
| 199 | async searchText( |
| 200 | path: string, |
| 201 | query: string, |
| 202 | options?: StateSearchOptions |
| 203 | ): Promise<ReturnType<typeof searchTextContent>> { |
| 204 | return searchTextContent(await this.readFile(path), query, options); |
| 205 | } |
| 206 | |
| 207 | async searchFiles( |
| 208 | pattern: string, |
nothing calls this directly
no test coverage detected