| 47 | } |
| 48 | |
| 49 | export interface SearchServiceImpl { |
| 50 | crawlPages: ( |
| 51 | params: CrawlMultiPagesQuery, |
| 52 | options?: { signal?: AbortSignal }, |
| 53 | ) => Promise<{ results: CrawlUniformResult[] }>; |
| 54 | webSearch: ( |
| 55 | params: SearchQuery, |
| 56 | options?: { signal?: AbortSignal }, |
| 57 | ) => Promise<UniformSearchResponse>; |
| 58 | } |
nothing calls this directly
no outgoing calls
no test coverage detected