UNPKG

speech-rule-engine

Version:

A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.

8 lines (7 loc) 292 B
import { SemanticNode } from '../semantic_tree/semantic_node.js'; import { EnrichCase } from './enrich_case.js'; export declare abstract class AbstractEnrichCase implements EnrichCase { semantic: SemanticNode; abstract getMathml(): Element; constructor(semantic: SemanticNode); }