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

7 lines
229 B
TypeScript

import type * as Compiler from "./svelte-ast-types-for-v5.js";
/** Parse HTML attributes */
export declare function parseAttributes(code: string, startIndex: number): {
attributes: Compiler.Attribute[];
index: number;
};