Skip to content

Commit

Permalink
Merge pull request #330 from zkldi/definitely-typed-fix
Browse files Browse the repository at this point in the history
Fixes bug in .d.ts where all queries are assumed to be rawCursor queries.
  • Loading branch information
mathieudutour authored Jan 27, 2021
2 parents f5ce422 + 416ea22 commit a15e163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ declare module "monk" {
// Raw
find(
query: FilterQuery<T>,
options?: FindOptions<T> & { rawCursor: true }
options: FindOptions<T> & { rawCursor: true }
): Promise<FindRawResult<T>>;
find(
query: FilterQuery<T>,
Expand Down

0 comments on commit a15e163

Please sign in to comment.