import { Metadata } from "@decaf-ts/decoration";
export * from "./indexes";
export * from "./repository";
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##";
/**
* @description Stores the current package name
* @summary The version string of the for-couchdb package
* @const PACKAGE_NAME
*/
export const PACKAGE_NAME = "##PACKAGE##";
Metadata.registerLibrary(PACKAGE_NAME, VERSION);
Source