case_empheq.d.ts 402 B

1234567891011
  1. import { SemanticNode } from '../semantic_tree/semantic_node.js';
  2. import { AbstractEnrichCase } from './abstract_enrich_case.js';
  3. export declare class CaseEmpheq extends AbstractEnrichCase {
  4. mml: Element;
  5. private mrows;
  6. static test(semantic: SemanticNode): boolean;
  7. constructor(semantic: SemanticNode);
  8. getMathml(): Element;
  9. private recurseToTable;
  10. private finalizeTable;
  11. }