/** * @module for-nest * @description This module serves as the main entry point for the ts-workspace library. It aggregates and exports * functionality from various submodules and utilities within the project. * * The module includes: * 1. Utility functions and types from the "./utils" directory: * - These likely contain helper functions, common types, and shared functionality used throughout the project. * - May include operations for data manipulation, type checking, or other general-purpose utilities. * * 2. A namespace and related types from the "./namespace" directory: * - This could contain domain-specific code or a collection of related functionality. * - Might include interfaces, types, or classes that represent core concepts in the library. * * 3. A VERSION constant: * - Represents the current version of the module. * - Useful for version checking and compatibility purposes. * * This structure provides a clean and organized export of the module's functionality, allowing consumers * to easily import and use specific parts of the library as needed. */ import "./decoration"; export * from "./decoration.d.cts"; export * from "./decaf-model/index.d.cts"; export * from "./auth/index.d.cts"; export * from "./factory/index.d.cts"; export * from "./interceptors/index.d.cts"; export * from "./overrides/index.d.cts"; export * from "./request/index.d.cts"; export * from "./constants.d.cts"; export * from "./controllers.d.cts"; export * from "./module.d.cts"; export * from "./core-module.d.cts"; export * from "./types.d.cts"; export * from "./decorators.d.cts"; export * from "./utils.d.cts"; export * from "./events-module/index.d.cts"; /** * Represents the current version of the ts-workspace module. * The actual version number is replaced during the build process. * @constant * @type {string} */ export declare const VERSION = "0.16.0"; /** * @description Represents the current commit hash of the module build. * @summary Stores the current git commit hash for the package. The build replaces * the placeholder with the actual commit hash at publish time. * @const COMMIT */ export declare const COMMIT = "a724479"; /** * @description Represents the full version string of the module. * @summary Stores the semver version and commit hash for the package. * The build replaces the placeholder with the actual `-` value at publish time. * @const FULL_VERSION */ export declare const FULL_VERSION = "0.16.0-a724479"; export declare const PACKAGE_NAME = "@decaf-ts/for-nest";