Interface ValidationState

Describes the initial state of the validator.

interface ValidationState {
    serverError?: string;
    submitted?: boolean;
    touched?: boolean;
}

Properties

serverError?: string
submitted?: boolean
touched?: boolean