# @types/pouchdb-adapter-cordova-sqlite

> TypeScript definitions for pouchdb-adapter-cordova-sqlite

Latest version **1.0.4** (published 2023-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @types/pouchdb-adapter-cordova-sqlite
pnpm add @types/pouchdb-adapter-cordova-sqlite
yarn add @types/pouchdb-adapter-cordova-sqlite
bun add @types/pouchdb-adapter-cordova-sqlite
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score; popular repo; extremely popular.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2023-11-07 |
| First published | 2019-07-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 5.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51441 |
| Maintainers | types |

## Links

- npm: https://www.npmjs.com/package/@types/pouchdb-adapter-cordova-sqlite
- Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
- Homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pouchdb-adapter-cordova-sqlite
- npm.io page: https://npm.io/package/@types/pouchdb-adapter-cordova-sqlite

## Dependencies (1)

- [@types/pouchdb-core](https://npm.io/package/@types/pouchdb-core.md) *

## Recent versions

- 1.0.4 (latest) — 2023-11-07
- 1.0.1 (ts3.6) — 2021-07-08
- 1.0.0 (ts2.3) — 2019-07-01
- 1.0.3 — 2023-10-18
- 1.0.2 — 2023-09-24

## README

# 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](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pouchdb-adapter-cordova-sqlite/index.d.ts)
````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
 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
 * Dependencies: [@types/pouchdb-core](https://npmjs.com/package/@types/pouchdb-core)

# Credits
These definitions were written by [Simon Paulger](https://github.com/spaulg), [Brian Geppert](https://github.com/geppy), [Frederico Galvão](https://github.com/fredgalvao), and [Matthew Paul](https://github.com/coffeymatt).

---
_Source: https://npm.io/package/@types/pouchdb-adapter-cordova-sqlite · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
