hojas/node_modules/speech-rule-engine/js/enrich_mathml/enrich_case.d.ts
2026-05-14 10:56:04 +02:00

11 lines
344 B
TypeScript

import { SemanticNode } from '../semantic_tree/semantic_node.js';
export interface EnrichCase {
getMathml(): Element;
}
interface Case {
test: (p1: SemanticNode) => boolean;
constr: (p1: SemanticNode) => EnrichCase;
}
export declare function getCase(node: SemanticNode): EnrichCase;
export declare const factory: Case[];
export {};