Skip to content

Commit ad8ca76

Browse files
committedJul 16, 2021
fix(index.d.ts): allow passing ResultType generic to Schema#path()
Fix #10435
1 parent 34d2796 commit ad8ca76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ declare module 'mongoose' {
11671167
obj: any;
11681168

11691169
/** Gets/sets schema paths. */
1170-
path(path: string): SchemaType;
1170+
path<ResultType extends SchemaType = SchemaType>(path: string): ResultType;
11711171
path(path: string, constructor: any): this;
11721172

11731173
/** Lists all paths and their type in the schema. */

0 commit comments

Comments
 (0)
Please sign in to comment.