speech-rule-engine
Version:
A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.
7 lines (6 loc) • 434 B
TypeScript
import { Attribute } from '../enrich_mathml/enrich_attr.js';
export declare function splitAttribute(attr: string | null): string[];
export declare function getAttribute(node: Element, attr: Attribute): string;
export declare function getSemanticRoot(node: Element): Element;
export declare function getBySemanticId(root: Element, id: string): Element;
export declare function getAllBySemanticId(root: Element, id: string): Element[];