@decaf-ts/decorator-validation
Version:
simple decorator based validation engine
10 lines (9 loc) • 377 B
TypeScript
/**
* @description Exports for the validation module.
* @summary This file exports all the necessary components for the validation functionality, including validators, decorators, types, and the Validation class.
* @module decorator-validation/validation
*/
export * from "./Validators";
export * from "./decorators";
export * from "./types";
export * from "./Validation";