($group: Document)
| 150 | /** Add a group stage to the aggregation pipeline */ |
| 151 | group<T = TSchema>($group: Document): AggregationCursor<T>; |
| 152 | group($group: Document): this { |
| 153 | return this.addStage({ $group }); |
| 154 | } |
| 155 | |
| 156 | /** Add a limit stage to the aggregation pipeline */ |
| 157 | limit($limit: number): this { |
no test coverage detected