/** @implements {AttributeAdapter} */ export class HTMLAttributeAdapter implements AttributeAdapter { /** @param {Attribute} node */ constructor(node: Attribute); node: Attribute; getKey(): HTMLAttributeKeyAdapter; getValue(): HTMLAttributeValueAdapter | null; } import type { AttributeAdapter } from "@html-eslint/core"; import type { Attribute } from "@html-eslint/types"; import { HTMLAttributeKeyAdapter } from "./attribute-key"; import { HTMLAttributeValueAdapter } from "./attribute-value"; //# sourceMappingURL=attribute.d.ts.map