@decaf-ts/db-decorators
Version:
Agnostic database decorators and repository
10 lines (9 loc) • 342 B
TypeScript
/**
* @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";