Skip to content

Commit 9d56f85

Browse files
drop collections fix
1 parent d818fed commit 9d56f85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/db.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -359,13 +359,13 @@ export class Db {
359359
): ListCollectionsCursor<CollectionInfo>;
360360
listCollections<
361361
T extends Pick<CollectionInfo, 'name' | 'type'> | CollectionInfo =
362-
| Pick<CollectionInfo, 'name' | 'type'>
363-
| CollectionInfo
362+
| Pick<CollectionInfo, 'name' | 'type'>
363+
| CollectionInfo
364364
>(filter?: Document, options?: ListCollectionsOptions & Abortable): ListCollectionsCursor<T>;
365365
listCollections<
366366
T extends Pick<CollectionInfo, 'name' | 'type'> | CollectionInfo =
367-
| Pick<CollectionInfo, 'name' | 'type'>
368-
| CollectionInfo
367+
| Pick<CollectionInfo, 'name' | 'type'>
368+
| CollectionInfo
369369
>(
370370
filter: Document = {},
371371
options: ListCollectionsOptions & Abortable = {}

0 commit comments

Comments
 (0)