@decaf-ts/core
Version:
Core persistence module for the decaf framework
23 lines (22 loc) • 858 B
TypeScript
/**
* @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 "./repository";
export * from "./identity";
export * from "./interfaces";
export * from "./model";
export * from "./query";
export * from "./utils";
export * from "./ram/RamAdapter";
export * from "./persistence";
/**
* @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.5.29";