Add missing field to PouchDB.Find.FindResponse (#42161)

> You may also want to pay attention to the "warning" value included in your results set, indicating that there was no index that matched the given query.

https://pouchdb.com/guides/mango-queries.html
This commit is contained in:
Steven Scott
2020-02-06 12:18:12 -05:00
committed by GitHub
parent ea146263f9
commit ea7ace3ea1

View File

@@ -102,6 +102,7 @@ declare namespace PouchDB {
interface FindResponse<Content extends {}> {
docs: Array<Core.ExistingDocument<Content>>;
warning?: string;
}
interface CreateIndexOptions {