* Frees any client-side resources used by the cursor.
(options?: { timeoutMS?: number })
| 642 | * Frees any client-side resources used by the cursor. |
| 643 | */ |
| 644 | async close(options?: { timeoutMS?: number }): Promise<void> { |
| 645 | await this.cleanup(options?.timeoutMS); |
| 646 | } |
| 647 | |
| 648 | /** |
| 649 | * Returns an array of documents. The caller is responsible for making sure that there |
nothing calls this directly
no test coverage detected