Skip to main content

ValidationStatus

Aggregate result of validation; it does not describe the node's value type.

Import

import type { ValidationStatus } from '@ngblocks/form-nodes';

When to use it

Use to distinguish valid, invalid, and unresolved validation states. Pending asynchronous work does not necessarily make a node invalid; consult the validation-state guide for aggregation.

Declaration

type ValidationStatus = 'valid' | 'invalid' | 'unknown';