// Type definitions for pouchdb-node 6.1 // Project: https://pouchdb.com/, https://github.com/pouchdb/pouchdb // Definitions by: Simon Paulger , Brian Geppert , Frederico Galvão // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 /// /// /// /// /// declare namespace PouchDB { namespace Core { interface DatabaseInfo { /** The backend *DOWN adapter being used (MemDOWN, RiakDOWN, …). */ backend_adapter?: string; } } } declare module 'pouchdb-node' { const PouchDb: PouchDB.Static; export = PouchDb; }