site/node_modules/speech-rule-engine/js/enrich_mathml/case_limit.d.ts
2024-10-14 08:09:33 +02:00

10 lines
351 B
TypeScript

import { SemanticNode } from '../semantic_tree/semantic_node';
import { AbstractEnrichCase } from './abstract_enrich_case';
export declare class CaseLimit extends AbstractEnrichCase {
mml: Element;
static test(semantic: SemanticNode): boolean;
private static walkTree_;
constructor(semantic: SemanticNode);
getMathml(): Element;
}