Files
DefinitelyTyped/types/pouchdb/index.d.ts
Hadrien de Cuzey b629f5171e [pouchdb] Update types definitions for the latest version of pouchdb (#18519)
Add an optional extended description…
2017-07-31 13:47:32 -07:00

29 lines
1.1 KiB
TypeScript

// Type definitions for pouchdb 6.3
// Project: https://pouchdb.com/
// Definitions by: Andy Brown <https://github.com/AGBrown>, Brian Geppert <https://github.com/geppy>, Frederico Galvão <https://github.com/fredgalvao>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
/// <reference types='pouchdb-adapter-fruitdown' />
/// <reference types='pouchdb-adapter-http' />
/// <reference types='pouchdb-adapter-idb' />
/// <reference types='pouchdb-adapter-leveldb' />
/// <reference types='pouchdb-adapter-localstorage' />
/// <reference types='pouchdb-adapter-memory' />
/// <reference types='pouchdb-adapter-node-websql' />
/// <reference types='pouchdb-adapter-websql' />
/// <reference types='pouchdb-browser' />
/// <reference types='pouchdb-core' />
/// <reference types='pouchdb-http' />
/// <reference types='pouchdb-mapreduce' />
/// <reference types='pouchdb-node' />
/// <reference types='pouchdb-replication' />
// TODO: Fixing this lint error will require a large refactor
/* tslint:disable:no-single-declare-module */
declare module 'pouchdb' {
const plugin: PouchDB.Static;
export default plugin;
}