(startUrl: string)
| 423 | } |
| 424 | |
| 425 | async reindexDoc(startUrl: string) { |
| 426 | const docConfig = this.config.docs?.find( |
| 427 | (doc) => doc.startUrl === startUrl, |
| 428 | ); |
| 429 | if (docConfig) { |
| 430 | await this.indexAndAdd(docConfig, true); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | // eslint-disable-next-line max-statements |
| 435 | async indexAndAdd( |
no test coverage detected