@nxtedition/lib 20.0.7 → 20.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/couch.js +1 -1
- package/package.json +1 -1
package/couch.js
CHANGED
|
@@ -130,7 +130,7 @@ export function makeCouch(opts) {
|
|
|
130
130
|
* @param {number} [options.heartbeat=60000] - The interval at which to send a heartbeat.
|
|
131
131
|
* @param {function} [options.retry=null] - The function to retry the request on error.
|
|
132
132
|
* @param {string} [options.since=null] - The sequence number to start from.
|
|
133
|
-
* @yields {{ id: string, seq?: string, doc?: string, deleted?: boolean, changes: Array<{ rev: string }> }}
|
|
133
|
+
* @yields {Array<{ id: string, seq?: string, doc?: string, deleted?: boolean, changes: Array<{ rev: string }> }>}
|
|
134
134
|
*/
|
|
135
135
|
async function* changes({ client = defaultClient, signal = null, ...options } = {}) {
|
|
136
136
|
const params = {}
|