import { Path } from './pathTypes'; /** * Result of `findParentPath`. */ export interface FoundParentPath { /** * Found parent node. */ readonly parent: T; /** * Path from the found parent to the child. */ readonly path: Path; }