import { ValidationControl, ValidationResult } from '.'; import { TemplateParameters } from './description-template.factory'; /** * Configuration of a validation chain element */ export interface ValidationConfig { description: TemplateParameters | (() => string) | string; process: (value: any, neighbors: ValidationControl[], ctor: any[], parent: ValidationControl, arg: any) => ValidationResult; } //# sourceMappingURL=validation-config.interface.d.ts.map