@decaf-ts/decorator-validation
Version:
simple decorator based validation engine
10 lines • 428 B
JavaScript
/**
* @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/index.js";
export * from "./decorators.js";
export * from "./types.js";
export * from "./Validation.js";
//# sourceMappingURL=index.js.map