Add Math Summation

This commit is contained in:
Dolan
2019-08-20 20:40:40 +01:00
parent a1b9be453b
commit 4f8d435e16
19 changed files with 359 additions and 2 deletions

View File

@ -3,9 +3,10 @@ import { XmlComponent } from "file/xml-components";
import { MathFraction } from "./fraction";
import { MathRun } from "./math-run";
import { MathSum } from "./n-ary";
export interface IMathOptions {
readonly children: Array<MathRun | MathFraction>;
readonly children: Array<MathRun | MathFraction | MathSum>;
}
export class Math extends XmlComponent {