Skip to content

Commit d250ddc

Browse files
committedJul 3, 2021
fix(index.d.ts): allow using type: Date with Date paths in SchemaDefinitionType
Fix #10409
1 parent ccfb86e commit d250ddc

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed
 

‎index.d.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -1245,15 +1245,17 @@ declare module 'mongoose' {
12451245
virtualpath(name: string): VirtualType | null;
12461246
}
12471247

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
12491249
? (typeof Number | 'number' | 'Number' | typeof Schema.Types.Number)
12501250
: T extends string
12511251
? (typeof String | 'string' | 'String' | typeof Schema.Types.String)
12521252
: T extends boolean
12531253
? (typeof Boolean | 'boolean' | 'Boolean' | typeof Schema.Types.Boolean)
1254+
: T extends NativeDate
1255+
? (typeof NativeDate | 'date' | 'Date' | typeof Schema.Types.Date)
12541256
: (Function | string);
12551257

1256-
type SchemaDefinitionProperty<T = undefined> = T extends string | number | Function
1258+
type SchemaDefinitionProperty<T = undefined> = T extends string | number | boolean | NativeDate | Function
12571259
? (SchemaDefinitionWithBuiltInClass<T> | SchemaTypeOptions<T>) :
12581260
SchemaTypeOptions<T extends undefined ? any : T> |
12591261
typeof SchemaType |
@@ -1437,7 +1439,7 @@ declare module 'mongoose' {
14371439

14381440
export class SchemaTypeOptions<T> {
14391441
type?:
1440-
T extends string | number | boolean | Function ? SchemaDefinitionWithBuiltInClass<T> :
1442+
T extends string | number | boolean | NativeDate | Function ? SchemaDefinitionWithBuiltInClass<T> :
14411443
T extends Schema<any, any> ? T :
14421444
T extends object[] ? (Schema<Document<Unpacked<T>>>[] | ReadonlyArray<Schema<Document<Unpacked<T>>>> | Schema<Document & Unpacked<T>>[] | ReadonlyArray<Schema<Document & Unpacked<T>>>) :
14431445
T extends string[] ? (SchemaDefinitionWithBuiltInClass<string>[] | ReadonlyArray<SchemaDefinitionWithBuiltInClass<string>>) :

‎test/typescript/schema.ts

+9
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,13 @@ function gh10370() {
154154
type: [actorSchema]
155155
}
156156
});
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+
});
157166
}

0 commit comments

Comments
 (0)
Please sign in to comment.