Skip to content

Commit

Permalink
Fixes bug in .d.ts where all queries are assumed to be rawCursor quer…
Browse files Browse the repository at this point in the history
…ies by default, even when they aren't.
  • Loading branch information
zkldi committed Jan 27, 2021
1 parent f5ce422 commit 416ea22
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 416ea22

Please sign in to comment.