Add MathIntegral class

This commit is contained in:
tvale1
2022-10-08 12:56:35 +11:00
parent 059455929b
commit 9ab6df99b1
5 changed files with 67 additions and 1 deletions

View File

@ -3,6 +3,7 @@ import { MathFraction } from "./fraction";
import { MathFunction } from "./function";
import { MathRun } from "./math-run";
import { MathSum } from "./n-ary";
import { MathIntegral } from "./n-ary";
import { MathRadical } from "./radical";
import { MathSubScript, MathSubSuperScript, MathSuperScript } from "./script";
@ -10,6 +11,7 @@ export type MathComponent =
| MathRun
| MathFraction
| MathSum
| MathIntegral
| MathSuperScript
| MathSubScript
| MathSubSuperScript