DynamicFormChildren
Readonly runtime-key map of dynamic and initially declared children.
Import
import type { DynamicFormChildren } from '@ngblocks/form-nodes';
When to use it
Use for runtime-key child iteration when exact property names are unknown. Access each child's $api to avoid direct member collisions.
Declaration
type DynamicFormChildren = {
readonly [key: string]: DynamicNode | undefined;
};