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