9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
// http://www.datypic.com/sc/ooxml/e-m_sPrePr-1.html
|
|
import { XmlComponent } from "file/xml-components";
|
|
|
|
export class MathPreSubSuperScriptProperties extends XmlComponent {
|
|
constructor() {
|
|
super("m:sPrePr");
|
|
}
|
|
}
|