Interface
AsyncValidatorConfig
@ng-forge/dynamic-forms
Async custom validator configuration using Angular's validateAsync API. Returns Observable<ValidationError | ValidationError[] | null>.
Signature
interface AsyncValidatorConfig
extends BaseValidatorConfigProperties
| Name | Type | Description |
|---|---|---|
type | "async" | Validator type identifier. |
functionName | string | Name of registered async validator function |
params ? | Record<string, unknown> | Optional parameters to pass to validator function |
packages/dynamic-forms/src/lib/models/validation/validator-config.ts:70