EITS-web/node_modules/eslint-plugin-svelte/lib/rules/indent-helpers/index.d.ts
2025-12-06 09:54:52 -05:00

11 lines
412 B
TypeScript

import type { RuleContext, RuleListener } from '../../types.js';
import type { IndentOptions } from './commons.js';
/**
* 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;