source: frontend/node_modules/eslint-module-utils/visit.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 238 bytes
Line 
1import type { Node } from 'estree';
2
3declare function visit(
4 node: Node,
5 keys: { [k in Node['type']]?: (keyof Node)[] },
6 visitorSpec: { [k in Node['type'] | `${Node['type']}:Exit`]?: Function }
7): void;
8
9export default visit;
Note: See TracBrowser for help on using the repository browser.