ValidationSuccess
Indicates that validation completed without errors.
Import
import type { ValidationSuccess } from '@ngblocks/form-nodes';
When to use it
Use when a rule explicitly reports successful validation. Return the supported success values rather than arbitrary truthy or falsy values.
Declaration
type ValidationSuccess = null | undefined | void;