case_limit.d.ts 357 B

123456789
  1. import { SemanticNode } from '../semantic_tree/semantic_node.js';
  2. import { AbstractEnrichCase } from './abstract_enrich_case.js';
  3. export declare class CaseLimit extends AbstractEnrichCase {
  4. mml: Element;
  5. static test(semantic: SemanticNode): boolean;
  6. private static walkTree_;
  7. constructor(semantic: SemanticNode);
  8. getMathml(): Element;
  9. }