File size: 406 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
import type { RuleContext, RuleListener } from '../../types';
import type { IndentOptions } from './commons';
/**
* Creates AST event handlers for html-indent.
*
* @param context The rule context.
* @param defaultOptions The default value of options.
* @returns AST event handlers.
*/
export declare function defineVisitor(context: RuleContext, defaultOptions: Partial<IndentOptions>): RuleListener;
|