Search
Preparing search index...
The search index is not available
DefinitelyTyped
Inherited
Private
Externals
Only exported
PouchApi
Interface PouchApi
Hierarchy
PouchApi
PouchDB
PouchDB
PouchDB
PouchDB
PouchDB
PouchDB
PouchDB
PouchDB
Index
Properties
replicate
Methods
allDocs
bulkDocs
changes
close
get
getAttachment
id
info
post
put
putAttachment
query
remove
removeAttachment
revsDiff
type
Properties
public
replicate
:
PouchReplicate
Methods
public
allDocs
(
opts
:
PouchAllDocsOptions
, callback
:
(err: PouchError, res: PouchAllDocsResponse) => void
)
Parameters
opts:
PouchAllDocsOptions
callback:
(err: PouchError, res: PouchAllDocsResponse) => void
public
allDocs
(
callback
:
(err: PouchError, res: PouchAllDocsResponse) => void
)
Parameters
callback:
(err: PouchError, res: PouchAllDocsResponse) => void
public
bulkDocs
(
req
:
PouchBulkDocsRequest
, opts
:
PouchUpdateOptions
, callback
:
(err: PouchError, res: PouchUpdateResponse[]) => void
)
Parameters
req:
PouchBulkDocsRequest
opts:
PouchUpdateOptions
callback:
(err: PouchError, res: PouchUpdateResponse[]) => void
public
bulkDocs
(
req
:
PouchBulkDocsRequest
, callback
:
(err: PouchError, res: PouchUpdateResponse[]) => void
)
Parameters
req:
PouchBulkDocsRequest
callback:
(err: PouchError, res: PouchUpdateResponse[]) => void
public
changes
(
opts
:
PouchChangesOptions
, callback
:
(err: PouchError, res: PouchChanges) => void
)
:
PouchCancellable
Parameters
opts:
PouchChangesOptions
callback:
(err: PouchError, res: PouchChanges) => void
Returns
PouchCancellable
public
changes
(
callback
:
(err: PouchError, res: PouchChanges) => void
)
:
PouchCancellable
Parameters
callback:
(err: PouchError, res: PouchChanges) => void
Returns
PouchCancellable
public
close
(
callback
:
() => void
)
Parameters
callback:
() => void
public
get
(
id
:
string
, opts
:
PouchGetOptions
, callback
:
(err: PouchError, res: PouchGetResponse) => void
)
Parameters
id:
string
opts:
PouchGetOptions
callback:
(err: PouchError, res: PouchGetResponse) => void
public
get
(
id
:
string
, callback
:
(err: PouchError, res: PouchGetResponse) => void
)
Parameters
id:
string
callback:
(err: PouchError, res: PouchGetResponse) => void
public
getAttachment
(
id
:
string
, opts
:
PouchAttachmentOptions
, callback
:
(err: PouchError, res: any) => void
)
Parameters
id:
string
opts:
PouchAttachmentOptions
callback:
(err: PouchError, res: any) => void
public
getAttachment
(
id
:
string
, callback
:
(err: PouchError, res: any) => void
)
Parameters
id:
string
callback:
(err: PouchError, res: any) => void
public
id
(
)
:
string
Returns
string
public
info
(
callback
:
(err: PouchError, res: PouchInfoResponse) => void
)
Parameters
callback:
(err: PouchError, res: PouchInfoResponse) => void
public
post
(
doc
:
any
, opts
:
PouchUpdateOptions
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
doc:
any
opts:
PouchUpdateOptions
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
post
(
doc
:
any
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
doc:
any
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
put
(
doc
:
any
, opts
:
PouchUpdateOptions
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
doc:
any
opts:
PouchUpdateOptions
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
put
(
doc
:
any
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
doc:
any
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
putAttachment
(
id
:
string
, rev
:
string
, doc
:
any
, type
:
string
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
id:
string
rev:
string
doc:
any
type:
string
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
query
(
fun
:
string
, opts
:
PouchQueryOptions
, callback
:
(err: PouchError, res: PouchQueryResponse) => void
)
Parameters
fun:
string
opts:
PouchQueryOptions
callback:
(err: PouchError, res: PouchQueryResponse) => void
public
query
(
fun
:
string
, callback
:
(err: PouchError, res: PouchQueryResponse) => void
)
Parameters
fun:
string
callback:
(err: PouchError, res: PouchQueryResponse) => void
public
query
(
fun
:
PouchFilter
, opts
:
PouchQueryOptions
, callback
:
(err: PouchError, res: PouchQueryResponse) => void
)
Parameters
fun:
PouchFilter
opts:
PouchQueryOptions
callback:
(err: PouchError, res: PouchQueryResponse) => void
public
query
(
fun
:
PouchFilter
, callback
:
(err: PouchError, res: PouchQueryResponse) => void
)
Parameters
fun:
PouchFilter
callback:
(err: PouchError, res: PouchQueryResponse) => void
public
remove
(
doc
:
any
, opts
:
PouchUpdateOptions
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
doc:
any
opts:
PouchUpdateOptions
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
remove
(
doc
:
any
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
doc:
any
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
removeAttachment
(
id
:
string
, rev
:
string
, callback
:
(err: PouchError, res: PouchUpdateResponse) => void
)
Parameters
id:
string
rev:
string
callback:
(err: PouchError, res: PouchUpdateResponse) => void
public
revsDiff
(
req
:
any
, opts
:
PouchRevsDiffOptions
, callback
:
(missing: any) => void
)
Parameters
req:
any
opts:
PouchRevsDiffOptions
callback:
(missing: any) => void
public
revsDiff
(
req
:
any
, callback
:
(missing: any) => void
)
Parameters
req:
any
callback:
(missing: any) => void
public
type
(
)
:
string
Returns
string
Globals