Interface FoundParentPath<T>

Result of findParentPath.

interface FoundParentPath<T> {
    parent: T;
    path: Path;
}

Type Parameters

  • T extends object

Properties

Properties

parent: T

Found parent object.

path: Path

Path from the found parent to the child.