mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
16 lines
617 B
TypeScript
16 lines
617 B
TypeScript
// Type definitions for pouchdb-browser 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 types="pouchdb-core" />
|
|
/// <reference types="pouchdb-adapter-idb" />
|
|
/// <reference types="pouchdb-adapter-http" />
|
|
/// <reference types="pouchdb-mapreduce" />
|
|
/// <reference types="pouchdb-replication" />
|
|
|
|
declare module 'pouchdb-browser' {
|
|
const PouchDb: PouchDB.Static;
|
|
export = PouchDb;
|
|
}
|