// Type definitions for pouchdb-node v5.4.4 // Project: https://pouchdb.com/ // Definitions by: Andy Brown , Brian Geppert , Frederico Galvão // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// /// /// /// /// 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; }