Files
docx-js/src/file/paragraph/math/n-ary/math-sub-script.ts

13 lines
294 B
TypeScript
Raw Normal View History

2019-08-20 20:40:40 +01:00
// http://www.datypic.com/sc/ooxml/e-m_e-1.html
import { XmlComponent } from "file/xml-components";
import { MathRun } from "../math-run";
export class MathSubScript extends XmlComponent {
constructor(readonly run: MathRun) {
super("m:sub");
this.root.push(run);
}
}