UNPKG

indicative-compiler

Version:

Indicative compiler to compile parsed schema into highly optimized functions

17 lines (16 loc) 740 B
/** * @module compiler/main */ /** * indicative-compiler * * (c) Harminder Virk <virk@adonisjs.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ export { Compiler as ValidatorCompiler } from './src/Validator/Compiler'; export { Executor as ValidatorExecutor } from './src/Validator/Executor'; export { Compiler as SanitizerCompiler } from './src/Sanitizer/Compiler'; export { Executor as SanitizerExecutor } from './src/Sanitizer/Executor'; export { ValidateFunction, SanitizeFunction, ErrorCollectorFn, ValidationDefination, ValidationDefinition, SanitizationDefination, SanitizationDefinition, ErrorFormatterContract, } from './src/Contracts';