walker_util.d.ts 434 B

123456
  1. import { Attribute } from '../enrich_mathml/enrich_attr.js';
  2. export declare function splitAttribute(attr: string | null): string[];
  3. export declare function getAttribute(node: Element, attr: Attribute): string;
  4. export declare function getSemanticRoot(node: Element): Element;
  5. export declare function getBySemanticId(root: Element, id: string): Element;
  6. export declare function getAllBySemanticId(root: Element, id: string): Element[];