added var to protocol
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
parent
1647e44e2f
commit
f95317eb24
@ -20,6 +20,9 @@ public protocol FormFieldable {
|
|||||||
|
|
||||||
/// Protocol for FormFieldable that require internal validation.
|
/// Protocol for FormFieldable that require internal validation.
|
||||||
public protocol FormFieldInternalValidatable: FormFieldable, Errorable {
|
public protocol FormFieldInternalValidatable: FormFieldable, Errorable {
|
||||||
|
/// Rules that drive the validator
|
||||||
|
var rules: [AnyRule<ValueType>] { get set }
|
||||||
|
|
||||||
/// Is there an internalError
|
/// Is there an internalError
|
||||||
var hasInternalError: Bool { get }
|
var hasInternalError: Bool { get }
|
||||||
/// Internal Error Message that will show.
|
/// Internal Error Message that will show.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user