Type alias FindResult<T, P>

FindResult<T, P>: {
    node: T;
    parent?: FindResult<P>;
}

A finder result.

Type Parameters

Type declaration

  • node: T

    The found node.

  • Optional parent?: FindResult<P>

    The parent node of the found node.

Generated using TypeDoc