@decaf-ts/for-postgres
Version:
template for ts projects
22 lines (21 loc) • 847 B
TypeScript
export * from "./indexes";
export * from "./query";
export * from "./sequences";
export * from "./adapter";
export * from "./constants";
export * from "./errors";
export * from "./PostgresDispatch";
export * from "./PostgresRepository";
export * from "./types";
export * from "./utils";
/**
* @description PostgreSQL adapter for Decaf.ts
* @summary A TypeScript adapter for PostgreSQL database operations, providing a seamless integration with the Decaf.ts framework. This module includes classes, interfaces, and utilities for working with PostgreSQL databases, including support for SQL queries, table operations, and sequence management.
* @module for-postgres
*/
/**
* @description Stores the current package version
* @summary The version string of the for-postgres package
* @const VERSION
*/
export declare const VERSION = "0.0.4";