• Overview
@angular/forms/signals

SchemaPath

Type Alias

An object that represents a location in the FieldTree tree structure and is used to bind logic to a particular part of the structure prior to the creation of the form. Because the FieldPath exists prior to the form's creation, it cannot be used to access any of the field state.

API

    
      type SchemaPath<TValue, TSupportsRules extends SchemaPathRules = SchemaPathRules.Supported, TPathKind extends PathKind = PathKind.Root> = {  [ɵɵTYPE]: {    value: () => TValue;    supportsRules: TSupportsRules;    pathKind: TPathKind;  };}
    
    
Jump to details