We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fd26fe commit d008033Copy full SHA for d008033
test/types/list_collections.test-d.ts
@@ -15,7 +15,7 @@ expectType<ListCollectionsCursor<Pick<CollectionInfo, 'name' | 'type'> | Collect
15
expectNotType<ListCollectionsCursor<Pick<CollectionInfo, 'name' | 'type'>>>(db.listCollections());
16
expectNotType<ListCollectionsCursor<CollectionInfo>>(db.listCollections());
17
18
-// Testings each argument variation
+// Testing each argument variation
19
db.listCollections();
20
db.listCollections({ a: 2 });
21
db.listCollections({ a: 2 }, { batchSize: 2 });
0 commit comments