persona-community-5/.pnpm-store/v3/files/72/d59d90f2d07eef56102b039b34926740569b59a09568a9d0c0852bcce15ee95ca5e13a7c868f35f35ea80e5b962b82b0dea61c9d4e4ee9104e6f4665535a61
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
610 B
Plaintext

import type { VisitorKeys } from '@typescript-eslint/visitor-keys';
import type { TSESTree } from './ts-estree';
type SimpleTraverseOptions = Readonly<{
visitorKeys?: Readonly<VisitorKeys>;
enter: (node: TSESTree.Node, parent: TSESTree.Node | undefined) => void;
} | {
visitorKeys?: Readonly<VisitorKeys>;
visitors: Record<string, (node: TSESTree.Node, parent: TSESTree.Node | undefined) => void>;
}>;
export declare function simpleTraverse(startingNode: TSESTree.Node, options: SimpleTraverseOptions, setParentPointers?: boolean): void;
export {};
//# sourceMappingURL=simple-traverse.d.ts.map