Skip to content

Commit 302f8e0

Browse files
drop collections fix
1 parent 3d64854 commit 302f8e0

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
@@ -360,13 +360,13 @@ export class Db {
360360
): ListCollectionsCursor<CollectionInfo>;
361361
listCollections<
362362
T extends Pick<CollectionInfo, 'name' | 'type'> | CollectionInfo =
363-
| Pick<CollectionInfo, 'name' | 'type'>
364-
| CollectionInfo
363+
| Pick<CollectionInfo, 'name' | 'type'>
364+
| CollectionInfo
365365
>(filter?: Document, options?: ListCollectionsOptions & Abortable): ListCollectionsCursor<T>;
366366
listCollections<
367367
T extends Pick<CollectionInfo, 'name' | 'type'> | CollectionInfo =
368-
| Pick<CollectionInfo, 'name' | 'type'>
369-
| CollectionInfo
368+
| Pick<CollectionInfo, 'name' | 'type'>
369+
| CollectionInfo
370370
>(
371371
filter: Document = {},
372372
options: ListCollectionsOptions & Abortable = {}

0 commit comments

Comments
 (0)