(startUrl: string)
| 1280 | } |
| 1281 | |
| 1282 | async delete(startUrl: string) { |
| 1283 | this.docsIndexingQueue.delete(startUrl); |
| 1284 | this.abort(startUrl); |
| 1285 | await this.deleteIndexes(startUrl); |
| 1286 | this.deleteFromConfig(startUrl); |
| 1287 | this.messenger?.send("refreshSubmenuItems", { |
| 1288 | providers: ["docs"], |
| 1289 | }); |
| 1290 | this.statuses.delete(startUrl); |
| 1291 | } |
| 1292 | } |
nothing calls this directly
no test coverage detected