updated FormField

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-07-12 15:03:46 -05:00
parent d2eae79f47
commit c8496194f0

View File

@ -37,7 +37,7 @@ public extension FormFieldProtocol {
} }
public protocol FormFieldInternalValidatableProtocol: FormFieldProtocol { public protocol FormFieldInternalValidatableProtocol: FormFieldProtocol {
associatedtype ValueType associatedtype ValueType = AnyHashable
var rules: [AnyRule<ValueType>]? { get set } var rules: [AnyRule<ValueType>]? { get set }
var internalRules: [RuleAnyModelProtocol]? { get } var internalRules: [RuleAnyModelProtocol]? { get }
} }