* Remove interface: Removes a path from the index.
(path: string)
| 231 | * Remove interface: Removes a path from the index. |
| 232 | */ |
| 233 | public async remove(path: string): Promise<void> { |
| 234 | await this.request("/remove", "POST", { path }); |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Closing interface: Closes the DocsAgent engine via HTTP request. |