CellValidationError
Type for mapping a field with validation error. For FormControl
, the value is a string, for FormGroup
the value can be string or CellValidationError because a FormGroup
contains multiple FormControl
s.
Presentation
type CellValidationError = { [field: string]: string | Object };