Interface: BaseValidationResult
Defined in: shared/types/validation.ts:20
Base validation result interface.
Remarksโ
Provides the core structure for validation results across the application. Other validation interfaces can extend this for domain-specific needs.
Extended byโ
Propertiesโ
errorsโ
errors: readonly
string
[]
Defined in: shared/types/validation.ts:22
Array of validation error messages
successโ
success:
boolean
Defined in: shared/types/validation.ts:24
Whether validation passed (no errors)
warnings?โ
optional
warnings: readonlystring
[]
Defined in: shared/types/validation.ts:26
Optional warning messages that don't prevent validation success