Files
docx-js/src/file/paragraph/math/script/sub-super-script/math-sub-super-script-function-properties.ts
2022-08-31 07:52:27 +01:00

9 lines
240 B
TypeScript

// http://www.datypic.com/sc/ooxml/e-m_sSubSupPr-1.html
import { XmlComponent } from "@file/xml-components";
export class MathSubSuperScriptProperties extends XmlComponent {
public constructor() {
super("m:sSubSupPr");
}
}