Type
FieldPathAccess
@ng-forge/dynamic-forms
Type helper for accessing nested field paths safely This allows accessing child paths while maintaining some type safety
Signature
type FieldPathAccess<TValue> = {
[K in keyof TValue]: SchemaPath<TValue[K]> | SchemaPathTree<TValue[K]>;
};Type Parameters
| Name | Constraint | Default | Description |
|---|---|---|---|
TValue | - | - | - |
packages/dynamic-forms/src/lib/models/types/field-helpers.ts:11