All files / src index.ts

100% Statements 10/10
100% Branches 0/0
100% Functions 0/0
100% Lines 10/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34              25x   25x 25x 25x 25x 25x 25x               25x               25x   25x  
/**
 * @module decorator-validation
 * @description TypeScript decorator-based validation library
 * @summary This module provides a comprehensive validation framework using TypeScript decorators.
 * It exposes utility functions, validation decorators, and model-related functionality for
 * implementing type-safe, declarative validation in TypeScript applications.
 */
import { Metadata } from "@decaf-ts/decoration";
 
export * from "./overrides";
export * from "./constants";
export * from "./types";
export * from "./utils";
export * from "./validation";
export * from "./model";
 
/**
 * @description Current version of the reflection package
 * @summary Stores the semantic version number of the package
 * @const VERSION
 * @memberOf module:decorator-validation
 */
export const VERSION = "##VERSION##";
 
/**
 * @description Current version of the reflection package
 * @summary Stores the semantic version number of the package
 * @const PACKAGE_NAME
 * @memberOf module:decorator-validation
 */
export const PACKAGE_NAME = "##PACKAGE##";
 
Metadata.registerLibrary(PACKAGE_NAME, VERSION);