utils-parent.d.ts 321 B

123
  1. import type { TSESTree } from '@typescript-eslint/experimental-utils';
  2. export declare function findFirstMatchingAncestor(node: TSESTree.Node, predicate: (node: TSESTree.Node) => boolean): TSESTree.Node | undefined;
  3. export declare function ancestorsChain(node: TSESTree.Node, boundaryTypes: Set<string>): TSESTree.Node[];