Skip to content

Commit 5edb25d

Browse files
committedJul 16, 2021
fix(index.d.ts): consistently use NativeDate instead of Date for Date validators and timestamps functions
Fix #10246
1 parent 6250841 commit 5edb25d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎index.d.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ declare module 'mongoose' {
120120
* [timestamps](/docs/guide.html#timestamps). You may stub out this function
121121
* using a tool like [Sinon](https://www.npmjs.com/package/sinon) for testing.
122122
*/
123-
export function now(): Date;
123+
export function now(): NativeDate;
124124

125125
/** Declares a global plugin executed on all Schemas. */
126126
export function plugin(fn: (schema: Schema, opts?: any) => void, opts?: any): typeof mongoose;
@@ -1432,7 +1432,7 @@ declare module 'mongoose' {
14321432
interface SchemaTimestampsConfig {
14331433
createdAt?: boolean | string;
14341434
updatedAt?: boolean | string;
1435-
currentTime?: () => (Date | number);
1435+
currentTime?: () => (NativeDate | number);
14361436
}
14371437

14381438
type Unpacked<T> = T extends (infer U)[] ? U : T;
@@ -1533,13 +1533,13 @@ declare module 'mongoose' {
15331533
subtype?: number
15341534

15351535
/** 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];
15371537

15381538
/** 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];
15401540

15411541
/** Defines a TTL index on this path. Only allowed for dates. */
1542-
expires?: number | Date;
1542+
expires?: number | NativeDate;
15431543

15441544
/** If `true`, Mongoose will skip gathering indexes on subpaths. Only allowed for subdocuments and subdocument arrays. */
15451545
excludeIndexes?: boolean;
@@ -1743,10 +1743,10 @@ declare module 'mongoose' {
17431743
expires(when: number | string): this;
17441744

17451745
/** Sets a maximum date validator. */
1746-
max(value: Date, message: string): this;
1746+
max(value: NativeDate, message: string): this;
17471747

17481748
/** Sets a minimum date validator. */
1749-
min(value: Date, message: string): this;
1749+
min(value: NativeDate, message: string): this;
17501750
}
17511751

17521752
class Decimal128 extends SchemaType {
@@ -2441,7 +2441,7 @@ declare module 'mongoose' {
24412441
type actualPrimitives = string | boolean | number | bigint | symbol | null | undefined;
24422442
type TreatAsPrimitives = actualPrimitives |
24432443
// eslint-disable-next-line no-undef
2444-
Date | RegExp | symbol | Error | BigInt | Types.ObjectId;
2444+
NativeDate | RegExp | symbol | Error | BigInt | Types.ObjectId;
24452445

24462446
type LeanType<T> =
24472447
0 extends (1 & T) ? T : // any

0 commit comments

Comments
 (0)
Please sign in to comment.