* Query for search results (uses the first provider)
(query: string, params?: SearchParams)
| 179 | * Query for search results (uses the first provider) |
| 180 | */ |
| 181 | async query(query: string, params?: SearchParams) { |
| 182 | return this.queryWithImpl(this.searchImpList[0], query, params); |
| 183 | } |
| 184 | |
| 185 | async webSearch({ query, searchCategories, searchEngines, searchTimeRange }: SearchQuery) { |
| 186 | try { |
no test coverage detected