From 9c41c194b459403c1e27d5c264d153054419f613 Mon Sep 17 00:00:00 2001 From: Andrei Alecu Date: Fri, 30 Jul 2021 10:40:22 +0300 Subject: [PATCH] perf: improve typescript type checking performance --- index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index 9e0ad99ff39..a02a598e76f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -2494,9 +2494,9 @@ declare module 'mongoose' { ? mongodb.Condition : mongodb.Condition; } & - mongodb.RootQuerySelector; + mongodb.RootQuerySelector>; - export type FilterQuery = _FilterQuery>; + export type FilterQuery = _FilterQuery; type NumericTypes = number | mongodb.Decimal128 | mongodb.Double | mongodb.Int32 | mongodb.Long;