11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
import type { IndentContext } from './commons';
|
|
import type { ESNodeListener } from '../../types-for-node';
|
|
type NodeListener = ESNodeListener;
|
|
/**
|
|
* Creates AST event handlers for ES nodes.
|
|
*
|
|
* @param context The rule context.
|
|
* @returns AST event handlers.
|
|
*/
|
|
export declare function defineVisitor(context: IndentContext): NodeListener;
|
|
export {};
|