DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
355 Bytes
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 {};