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

8 lines
347 B
TypeScript

import type { Linter } from 'eslint';
export * as meta from '../meta.js';
/** preprocess */
export declare function preprocess(code: string, filename: string): string[];
/** postprocess */
export declare function postprocess([messages]: Linter.LintMessage[][], filename: string): Linter.LintMessage[];
export declare const supportsAutofix = true;