Source

index.ts

export * from "./indexes";
export * from "./interfaces";
export * from "./model";
export * from "./sequences";
export * from "./adapter";
export * from "./constants";
export * from "./errors";
export * from "./types";
export * from "./utils";
export * from "./query";

/**
 * @description CouchDB adapter for Decaf.ts
 * @summary A TypeScript adapter for CouchDB database operations, providing a seamless integration with the Decaf.ts framework. This module includes classes, interfaces, and utilities for working with CouchDB databases, including support for Mango queries, document operations, and sequence management.
 * @module for-couchdb
 */

/**
 * @description Stores the current package version
 * @summary The version string of the for-couchdb package
 * @const VERSION
 */
export const VERSION = "##VERSION##";