import { RequiredTypeEnum } from '@mjcloud/types'; import { ValidationRuleType } from '@mjcloud/utils/dist/asyncValidator'; export interface IValidationRuleConfig { message?: string; validationType?: ValidationRuleType; requiredType?: RequiredTypeEnum; whitespace?: boolean; len?: number; min?: number; max?: number; enums?: string; pattern?: string; }