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 b5f61953df
commit 1a23c97a73

View File

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