@@ -120,7 +120,7 @@ declare module 'mongoose' {
120
120
* [timestamps](/docs/guide.html#timestamps). You may stub out this function
121
121
* using a tool like [Sinon](https://www.npmjs.com/package/sinon) for testing.
122
122
*/
123
- export function now ( ) : Date ;
123
+ export function now ( ) : NativeDate ;
124
124
125
125
/** Declares a global plugin executed on all Schemas. */
126
126
export function plugin ( fn : ( schema : Schema , opts ?: any ) => void , opts ?: any ) : typeof mongoose ;
@@ -1432,7 +1432,7 @@ declare module 'mongoose' {
1432
1432
interface SchemaTimestampsConfig {
1433
1433
createdAt ?: boolean | string ;
1434
1434
updatedAt ?: boolean | string ;
1435
- currentTime ?: ( ) => ( Date | number ) ;
1435
+ currentTime ?: ( ) => ( NativeDate | number ) ;
1436
1436
}
1437
1437
1438
1438
type Unpacked < T > = T extends ( infer U ) [ ] ? U : T ;
@@ -1533,13 +1533,13 @@ declare module 'mongoose' {
1533
1533
subtype ?: number
1534
1534
1535
1535
/** The minimum value allowed for this path. Only allowed for numbers and dates. */
1536
- min ?: number | Date | [ number , string ] | [ Date , string ] | readonly [ number , string ] | readonly [ Date , string ] ;
1536
+ min ?: number | NativeDate | [ number , string ] | [ NativeDate , string ] | readonly [ number , string ] | readonly [ NativeDate , string ] ;
1537
1537
1538
1538
/** The maximum value allowed for this path. Only allowed for numbers and dates. */
1539
- max ?: number | Date | [ number , string ] | [ Date , string ] | readonly [ number , string ] | readonly [ Date , string ] ;
1539
+ max ?: number | NativeDate | [ number , string ] | [ NativeDate , string ] | readonly [ number , string ] | readonly [ NativeDate , string ] ;
1540
1540
1541
1541
/** Defines a TTL index on this path. Only allowed for dates. */
1542
- expires ?: number | Date ;
1542
+ expires ?: number | NativeDate ;
1543
1543
1544
1544
/** If `true`, Mongoose will skip gathering indexes on subpaths. Only allowed for subdocuments and subdocument arrays. */
1545
1545
excludeIndexes ?: boolean ;
@@ -1743,10 +1743,10 @@ declare module 'mongoose' {
1743
1743
expires ( when : number | string ) : this;
1744
1744
1745
1745
/** Sets a maximum date validator. */
1746
- max ( value : Date , message : string ) : this;
1746
+ max ( value : NativeDate , message : string ) : this;
1747
1747
1748
1748
/** Sets a minimum date validator. */
1749
- min ( value : Date , message : string ) : this;
1749
+ min ( value : NativeDate , message : string ) : this;
1750
1750
}
1751
1751
1752
1752
class Decimal128 extends SchemaType {
@@ -2441,7 +2441,7 @@ declare module 'mongoose' {
2441
2441
type actualPrimitives = string | boolean | number | bigint | symbol | null | undefined ;
2442
2442
type TreatAsPrimitives = actualPrimitives |
2443
2443
// eslint-disable-next-line no-undef
2444
- Date | RegExp | symbol | Error | BigInt | Types . ObjectId ;
2444
+ NativeDate | RegExp | symbol | Error | BigInt | Types . ObjectId ;
2445
2445
2446
2446
type LeanType < T > =
2447
2447
0 extends ( 1 & T ) ? T : // any
0 commit comments