mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Started definitions for multi-module PouchDB * Fixed whitespace * Updated PouchDB definitions for v5.4.4.
25 lines
967 B
TypeScript
25 lines
967 B
TypeScript
// Type definitions for pouchdb-node v5.4.4
|
|
// 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
|
|
|
|
/// <reference path="../pouchdb-core/pouchdb-core.d.ts" />
|
|
/// <reference path="../pouchdb-adapter-leveldb/pouchdb-adapter-leveldb.d.ts" />
|
|
/// <reference path="../pouchdb-adapter-http/pouchdb-adapter-http.d.ts" />
|
|
/// <reference path="../pouchdb-mapreduce/pouchdb-mapreduce.d.ts" />
|
|
/// <reference path="../pouchdb-replication/pouchdb-replication.d.ts" />
|
|
|
|
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;
|
|
}
|