@types/pouchdb-adapter-cordova-sqlite
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

Installation

npm install --save @types/pouchdb-adapter-cordova-sqlite

Summary

This package contains type definitions for pouchdb-adapter-cordova-sqlite (https://pouchdb.com/).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pouchdb-adapter-cordova-sqlite.

index.d.ts

/// <reference types="pouchdb-core" />

declare namespace PouchDB {
    namespace AdapterCordovaSqlite {
        interface Configuration extends Configuration.LocalDatabaseConfiguration {
            /**
             * Location of database e.g. 'Default'.
             */
            location?: string | undefined;

            /**
             * Location of database e.g. 'Default'. Only use 'location' or 'iosDatabaseLocation' not both.
             */
            iosDatabaseLocation?: string | undefined;

            /**
             * Version of android database to use.
             */
            androidDatabaseImplementation?: number | undefined;

            /**
             * Enable autocompation of database.
             */
            auto_compaction?: boolean | undefined;

            adapter: "cordova-sqlite";
        }
    }

    interface Static {
        new<Content extends {}>(name: string | null, options: AdapterCordovaSqlite.Configuration): Database<Content>;
    }
}

declare module "pouchdb-adapter-cordova-sqlite" {
    const plugin: PouchDB.Plugin;
    export = plugin;
}

Additional Details

Credits

These definitions were written by Simon Paulger, Brian Geppert, Frederico Galvão, and Matthew Paul.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/pouchdb-adapter-cordova-sqlite

Weekly Downloads

14,108

Version

1.0.4

License

MIT

Unpacked Size

5.59 kB

Total Files

5

Last publish

Collaborators

  • types