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

12 lines
373 B
TypeScript

import type { SvelteNodeListener } from '../../types-for-node.js';
import type { IndentContext } from './commons.js';
type NodeListener = SvelteNodeListener;
/**
* Creates AST event handlers for svelte nodes.
*
* @param context The rule context.
* @returns AST event handlers.
*/
export declare function defineVisitor(context: IndentContext): NodeListener;
export {};