UNPKG

@decaf-ts/core

Version:

Core persistence module for the decaf framework

31 lines (30 loc) 1.1 kB
/** * @module core * @description Core module for the Decaf TypeScript framework * @summary This module provides the foundational components of the Decaf framework, including identity management, * model definitions, repository patterns, persistence layer, query building, and utility functions. * It exports functionality from various submodules and sets up the injectable registry for repository decorators. */ export * from "./overrides"; export * from "./repository"; export * from "./identity"; export * from "./interfaces"; export * from "./model"; export * from "./query"; export * from "./utils"; export * from "./persistence"; export * from "./ram"; /** * @description Stores the current package version * @summary A constant representing the version of the core package * @const VERSION * @memberOf module:core */ export declare const VERSION = "0.7.44"; /** * @description Stores the current package version * @summary A constant representing the version of the core package * @const PACKAGE_NAME * @memberOf module:core */ export declare const PACKAGE_NAME = "@decaf-ts/core";