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
interfaceThe PathKind for a FieldPath that is at the root of its field tree.
interface Root {
}
PathKind.Child
interfaceThe PathKind for a FieldPath that is a child of another FieldPath.
interface Child extends PathKind.Root {
}
PathKind.Item
interfaceThe PathKind for a FieldPath that is an item in a FieldPath array.
interface Item extends PathKind.Child {
}