projects/ng-dynamic-forms/core/src/lib/model/misc/dynamic-form-control-path.model.ts
Properties |
| id |
id:
|
Type : string
|
| Optional |
| index |
index:
|
Type : number | null
|
| Optional |
| parent |
parent:
|
Type : DynamicPathable | null
|
export interface DynamicPathable {
id?: string;
index?: number | null;
parent: DynamicPathable | null;
}