UNPKG

fortify-schema

Version:

A modern TypeScript validation library designed around familiar interface syntax and powerful conditional validation. Experience schema validation that feels natural to TypeScript developers while unlocking advanced runtime validation capabilities.

22 lines (18 loc) 796 B
/** * Validators Module Index * * Exports all validator modules for easy importing. * This is the primary validation system used by InterfaceSchema.ts * and serves as the single source of truth for all validation logic. */ export { TypeValidators } from "./TypeValidators"; export { ConstraintParser } from "./ConstraintParser"; export { TypeGuards } from "./TypeGuards"; export { ValidationHelpers } from "./ValidationHelpers"; // Re-export types for convenience export type { ParsedConstraints } from "../../../../types/parser.type"; /** * Note: All validation functionality is available through the individual exports above. * Use TypeValidators, ConstraintParser, TypeGuards, and ValidationHelpers directly * for the most efficient imports and to avoid circular dependencies. */