/**
* @description Exports for the model module.
* @summary This file exports all the necessary components for the model functionality, including constants, decorators, and the model itself.
* @module db-decorators/model
*/
export * from "./constants";
export * from "./decorators";
export * from "./model";
export * from "./validation";
Source