File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1746,3 +1746,12 @@ async function schemaDouble() {
1746
1746
const doc = await TestModel . findOne ( ) . orFail ( ) ;
1747
1747
expectType < Types . Double | null | undefined > ( doc . balance ) ;
1748
1748
}
1749
+
1750
+ function defaultReturnsUndefined ( ) {
1751
+ const schema = new Schema < { arr : number [ ] } > ( {
1752
+ arr : {
1753
+ type : [ Number ] ,
1754
+ default : ( ) => void 0
1755
+ }
1756
+ } ) ;
1757
+ }
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ declare module 'mongoose' {
97
97
* The default value for this path. If a function, Mongoose executes the function
98
98
* and uses the return value as the default.
99
99
*/
100
- default ?: DefaultType < T > | ( ( this : EnforcedDocType , doc : any ) => DefaultType < T > ) | null ;
100
+ default ?: DefaultType < T > | ( ( this : EnforcedDocType , doc : any ) => DefaultType < T > | null | undefined ) | null ;
101
101
102
102
/**
103
103
* The model that `populate()` should use if populating this path.
You can’t perform that action at this time.
0 commit comments