* Stores search results in the cache. * @param query The search query pattern. * @param results The matching file paths to cache.
(query: string, results: string[])
| 63 | * @param results The matching file paths to cache. |
| 64 | */ |
| 65 | set(query: string, results: string[]): void { |
| 66 | this.cache.set(query, results); |
| 67 | } |
| 68 | } |
no outgoing calls
no test coverage detected