Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/nano.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,9 @@ declare namespace nano {
/** Run Mango query.
* @see Docs: {@link http://docs.couchdb.org/en/latest/api/database/find.html#db-find} */
find(query: MangoQuery): Promise <MangoResponse<D>>;
/** Run Mango query as a stream.
* @see Docs: {@link http://docs.couchdb.org/en/latest/api/database/find.html#db-find} */
findAsStream(query: MangoQuery): NodeJS.ReadStream;
/** Server scope */
server: ServerScope;
/** Fetch information about a single partition in this database.
Expand Down