(ns: MongoDBCollectionNamespace, filter: Document, options: DeleteOptions)
| 122 | } |
| 123 | export class DeleteManyOperation extends DeleteOperation { |
| 124 | constructor(ns: MongoDBCollectionNamespace, filter: Document, options: DeleteOptions) { |
| 125 | super(ns, [makeDeleteStatement(filter, options)], options); |
| 126 | } |
| 127 | |
| 128 | override handleOk( |
| 129 | response: InstanceType<typeof this.SERVER_COMMAND_RESPONSE_TYPE> |
nothing calls this directly
no test coverage detected