Skip to content

Commit 5391174

Browse files
Merge pull request #319 from tw0517tw/patch-1
fix listCollections return type
2 parents 2ee6693 + cbb5a0b commit 5391174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ declare module "monk" {
9797
) => void;
9898

9999
readonly close: () => Promise<void>;
100-
readonly listCollections: (query?: Object) => Array<ICollection>;
100+
readonly listCollections: (query?: Object) => Promise<Array<ICollection>>;
101101

102102
get<T = any>(name: string, options?: CollectionOptions): ICollection<T>;
103103
create<T = any>(

0 commit comments

Comments
 (0)