Installation
npm install --save @types/pouchdb-adapter-fruitdown
Summary
This package contains type definitions for pouchdb-adapter-fruitdown (https://pouchdb.com/).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pouchdb-adapter-fruitdown.
index.d.ts
// Type definitions for pouchdb-adapter-fruitdown 6.1
// Project: https://pouchdb.com/, https://github.com/pouchdb/pouchdb
// 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
// TypeScript Version: 2.3
/// <reference types="pouchdb-core" />
declare namespace PouchDB {
namespace FruitDOWNAdapter {
interface FruitDOWNAdapterConfiguration extends Configuration.LocalDatabaseConfiguration {
adapter: "fruitdown";
}
}
interface Static {
new<Content extends {}>(
name: string | null,
options: FruitDOWNAdapter.FruitDOWNAdapterConfiguration,
): Database<Content>;
}
}
declare module "pouchdb-adapter-fruitdown" {
const plugin: PouchDB.Plugin;
export = plugin;
}
Additional Details
- Last updated: Sun, 24 Sep 2023 06:37:28 GMT
- Dependencies: @types/pouchdb-core
- Global values: none
Credits
These definitions were written by Simon Paulger, Brian Geppert, and Frederico Galvão.