/**
 * ValidationErrorOptions - interface for ValidationErrorOptions.
 * @interface
 * @author Danil Andreev
 */
export default interface ValidationErrorOptions {
    /**
     * isFatal - if true - validation is failed with fatal error.
     */
    isFatal?: boolean;
    /**
     * id - custom identifier. Not used in validation.
     */
    id?: string | number;
}
