6 lines
222 B
TypeScript
6 lines
222 B
TypeScript
import type { AbbreviationNode } from '@emmetio/abbreviation';
|
|
/**
|
|
* XSL transformer: removes `select` attributes from certain nodes that contain
|
|
* children
|
|
*/
|
|
export default function xsl(node: AbbreviationNode): void;
|