From c8311f4593d96c74eb9292d99486f0db2d10497b Mon Sep 17 00:00:00 2001 From: crStiv Date: Fri, 5 Dec 2025 10:24:10 +0100 Subject: [PATCH] Update collection.ts --- packages/common/src/types/collection.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/common/src/types/collection.ts b/packages/common/src/types/collection.ts index a527ed0a..55b84a27 100644 --- a/packages/common/src/types/collection.ts +++ b/packages/common/src/types/collection.ts @@ -8,8 +8,8 @@ import { TCollectionMetadata } from './metadata.js'; /** * Sorting type * @enum - * @property {string} Asc - Ascending -1 - * @property {string} Desc - Descending 1 + * @property {string} Asc - Ascending (maps to MongoDB value: 1) + * @property {string} Desc - Descending (maps to MongoDB value: -1) */ export enum EIndexType { Asc = 'Asc',