Files
docx-js/src/file/paragraph/math/radical/math-degree.ts

14 lines
343 B
TypeScript
Raw Normal View History

2020-10-10 13:41:26 +01:00
// http://www.datypic.com/sc/ooxml/e-m_deg-1.html
import { XmlComponent } from "file/xml-components";
import { MathComponent } from "../math-component";
export class MathDegree extends XmlComponent {
constructor(child?: MathComponent) {
super("m:deg");
if (!!child) {
this.root.push(child);
}
}
}