Skip to content

Commit e9b5eed

Browse files
authoredJan 4, 2023
Merge pull request #12864 from dmshvetsov/dmshvetsov/fix-type-def-aggregation-model-fn
add type def for Aggreaget#model without arguments
2 parents d10ad8c + 5faf524 commit e9b5eed

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
 

‎test/types/aggregate.test.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Schema, model, Document, Expression, PipelineStage, Types } from 'mongoose';
1+
import { Schema, model, Document, Expression, PipelineStage, Types, Model, Aggregate } from 'mongoose';
22
import { expectType } from 'tsd';
33

44
const schema: Schema = new Schema({ name: { type: 'String' } });
@@ -8,6 +8,7 @@ interface ITest extends Document {
88
}
99

1010
const Test = model<ITest>('Test', schema);
11+
const AnotherTest = model<ITest>('AnotherTest', schema);
1112

1213
Test.aggregate([{ $match: { name: 'foo' } }]).exec().then((res: any) => console.log(res));
1314

@@ -60,6 +61,10 @@ async function run() {
6061
expectType<ITest[]>(await Test.aggregate<ITest>().sort({ name: 'desc' }));
6162
expectType<ITest[]>(await Test.aggregate<ITest>().sort({ name: 'descending' }));
6263
expectType<ITest[]>(await Test.aggregate<ITest>().sort({ name: { $meta: 'textScore' } }));
64+
65+
// Aggregate.prototype.model()
66+
expectType<Model<any>>(Test.aggregate<ITest>().model());
67+
expectType<Aggregate<ITest[]>>(Test.aggregate<ITest>().model(AnotherTest));
6368
}
6469

6570
function gh12017_1() {

‎types/aggregate.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,11 @@ declare module 'mongoose' {
166166
*/
167167
model(model: Model<any>): this;
168168

169+
/**
170+
* Returns the current model bound to this aggregate object
171+
*/
172+
model(): Model<any>;
173+
169174
/**
170175
* Append a new $near operator to this aggregation pipeline
171176
* @param arg $near operator contents

0 commit comments

Comments
 (0)
Please sign in to comment.