mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
17 lines
668 B
TypeScript
17 lines
668 B
TypeScript
// Type definitions for pouchdb-browser v6.1.2
|
|
// Project: https://pouchdb.com/
|
|
// Definitions by: Simon Paulger <https://github.com/spaulg>, 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-websql" />
|
|
/// <reference types="pouchdb-adapter-http" />
|
|
/// <reference types="pouchdb-mapreduce" />
|
|
/// <reference types="pouchdb-replication" />
|
|
|
|
declare module 'pouchdb-browser' {
|
|
const PouchDb: PouchDB.Static;
|
|
export = PouchDb;
|
|
}
|