• Overview
@angular/forms/signals

PathKind

Type Alias

The kind of FieldPath (Root, Child of another FieldPath, or Item in a FieldPath array)

API

    
      type PathKind = PathKind.Root | PathKind.Child | PathKind.Item
    
    

PathKind.Root

interface

The PathKind for a FieldPath that is at the root of its field tree.

    
      interface Root {}
    
    

PathKind.Child

interface

The PathKind for a FieldPath that is a child of another FieldPath.

    
      interface Child extends PathKind.Root {}
    
    

PathKind.Item

interface

The PathKind for a FieldPath that is an item in a FieldPath array.

    
      interface Item extends PathKind.Child {}
    
    
Jump to details