All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
import type { Node } from 'estree';
|
|
|
|
declare function visit(
|
|
node: Node,
|
|
keys: { [k in Node['type']]?: (keyof Node)[] },
|
|
visitorSpec: { [k in Node['type'] | `${Node['type']}:Exit`]?: Function }
|
|
): void;
|
|
|
|
export default visit;
|