Files
blog/node_modules/speech-rule-engine/js/enrich_mathml/abstract_enrich_case.d.ts
2025-07-16 16:30:56 +00:00

8 lines
292 B
TypeScript

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);
}