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