emmet
Version:
Emmet — the essential toolkit for web-developers
8 lines (7 loc) • 310 B
TypeScript
import type { AbbreviationNode } from '@emmetio/abbreviation';
import type { Config } from '../config.js';
/**
* Merges attributes in current node: de-duplicates attributes with the same name
* and merges class names
*/
export default function mergeAttributes(node: AbbreviationNode, config: Config): void;