* https://www.mongodb.com/docs/manual/reference/command/killCursors/ * @internal
| 13 | * @internal |
| 14 | */ |
| 15 | interface KillCursorsCommand { |
| 16 | killCursors: string; |
| 17 | cursors: Long[]; |
| 18 | comment?: unknown; |
| 19 | } |
| 20 | |
| 21 | export class KillCursorsOperation extends AbstractOperation<void> { |
| 22 | override SERVER_COMMAND_RESPONSE_TYPE = MongoDBResponse; |
nothing calls this directly
no outgoing calls
no test coverage detected