File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -1245,15 +1245,17 @@ declare module 'mongoose' {
1245
1245
virtualpath ( name : string ) : VirtualType | null ;
1246
1246
}
1247
1247
1248
- type SchemaDefinitionWithBuiltInClass < T extends number | string | boolean | Function > = T extends number
1248
+ type SchemaDefinitionWithBuiltInClass < T extends number | string | boolean | NativeDate | Function > = T extends number
1249
1249
? ( typeof Number | 'number' | 'Number' | typeof Schema . Types . Number )
1250
1250
: T extends string
1251
1251
? ( typeof String | 'string' | 'String' | typeof Schema . Types . String )
1252
1252
: T extends boolean
1253
1253
? ( typeof Boolean | 'boolean' | 'Boolean' | typeof Schema . Types . Boolean )
1254
+ : T extends NativeDate
1255
+ ? ( typeof NativeDate | 'date' | 'Date' | typeof Schema . Types . Date )
1254
1256
: ( Function | string ) ;
1255
1257
1256
- type SchemaDefinitionProperty < T = undefined > = T extends string | number | Function
1258
+ type SchemaDefinitionProperty < T = undefined > = T extends string | number | boolean | NativeDate | Function
1257
1259
? ( SchemaDefinitionWithBuiltInClass < T > | SchemaTypeOptions < T > ) :
1258
1260
SchemaTypeOptions < T extends undefined ? any : T > |
1259
1261
typeof SchemaType |
@@ -1437,7 +1439,7 @@ declare module 'mongoose' {
1437
1439
1438
1440
export class SchemaTypeOptions < T > {
1439
1441
type ?:
1440
- T extends string | number | boolean | Function ? SchemaDefinitionWithBuiltInClass < T > :
1442
+ T extends string | number | boolean | NativeDate | Function ? SchemaDefinitionWithBuiltInClass < T > :
1441
1443
T extends Schema < any , any > ? T :
1442
1444
T extends object [ ] ? ( Schema < Document < Unpacked < T > > > [ ] | ReadonlyArray < Schema < Document < Unpacked < T > > > > | Schema < Document & Unpacked < T > > [ ] | ReadonlyArray < Schema < Document & Unpacked < T > > > ) :
1443
1445
T extends string [ ] ? ( SchemaDefinitionWithBuiltInClass < string > [ ] | ReadonlyArray < SchemaDefinitionWithBuiltInClass < string > > ) :
Original file line number Diff line number Diff line change @@ -154,4 +154,13 @@ function gh10370() {
154
154
type : [ actorSchema ]
155
155
}
156
156
} ) ;
157
+ }
158
+
159
+ function gh10409 ( ) {
160
+ interface Something {
161
+ field : Date ;
162
+ }
163
+ const someSchema = new Schema < Something , Model < Something > , Something > ( {
164
+ field : { type : Date }
165
+ } ) ;
157
166
}
You can’t perform that action at this time.
0 commit comments