EITS-web/node_modules/eslint-plugin-svelte/lib/shared/svelte-compile-warns/ignore-comment.d.ts
2025-12-06 09:54:52 -05:00

16 lines
513 B
TypeScript

import type { AST } from 'svelte-eslint-parser';
import type { RuleContext } from '../../types.js';
export type IgnoreItemWithoutCode = {
range: [number, number];
code: null;
token: AST.Token | AST.Comment;
};
export type IgnoreItem = {
range: [number, number];
code: string;
codeForV5: string;
token: AST.Token | AST.Comment;
};
/** Extract all svelte-ignore comment items */
export declare function getSvelteIgnoreItems(context: RuleContext): (IgnoreItem | IgnoreItemWithoutCode)[];