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

NameConstraintDefaultDescription
TValue---