mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
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:
1
types/pouchdb-find/index.d.ts
vendored
1
types/pouchdb-find/index.d.ts
vendored
@@ -102,6 +102,7 @@ declare namespace PouchDB {
|
||||
|
||||
interface FindResponse<Content extends {}> {
|
||||
docs: Array<Core.ExistingDocument<Content>>;
|
||||
warning?: string;
|
||||
}
|
||||
|
||||
interface CreateIndexOptions {
|
||||
|
||||
Reference in New Issue
Block a user