Interface: FormValidationResult
Defined in: shared/types/validation.ts:38
Form-specific validation result.
Remarksโ
Extends base validation with field-specific error mapping for UI form validation scenarios.
Extendsโ
Propertiesโ
errorsโ
errors: readonly
string
[]
Defined in: shared/types/validation.ts:22
Array of validation error messages
Inherited fromโ
successโ
success:
boolean
Defined in: shared/types/validation.ts:24
Whether validation passed (no errors)
Inherited fromโ
warnings?โ
optional
warnings: readonlystring
[]
Defined in: shared/types/validation.ts:26
Optional warning messages that don't prevent validation success
Inherited fromโ
fieldErrors?โ
optional
fieldErrors:Record
<string
,string
[]>
Defined in: shared/types/validation.ts:40
Field-specific error messages mapped by field name