semantic_mathml.d.ts 730 B

1234567891011121314151617181920212223242526272829
  1. import { SemanticAbstractParser } from './semantic_parser.js';
  2. export declare class SemanticMathml extends SemanticAbstractParser<Element> {
  3. private parseMap_;
  4. private static getAttribute_;
  5. constructor();
  6. parse(mml: Element): any;
  7. private semantics_;
  8. private rows_;
  9. private fraction_;
  10. private limits_;
  11. private root_;
  12. private sqrt_;
  13. private table_;
  14. private tableRow_;
  15. private tableLabeledRow_;
  16. private tableCell_;
  17. private space_;
  18. private text_;
  19. private identifier_;
  20. private number_;
  21. private operator_;
  22. private fenced_;
  23. private enclosed_;
  24. private multiscripts_;
  25. private empty_;
  26. private action_;
  27. private dummy_;
  28. private leaf_;
  29. }