9 lines
240 B
TypeScript
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");
|
|
}
|
|
}
|