UNPKG

eslint-module-utils

Version:

Core utilities to support eslint-plugin-import and other module-related plugins.

10 lines (7 loc) 238 B
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;