9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
![]() |
// http://www.datypic.com/sc/ooxml/e-m_sSubSupPr-1.html
|
||
|
import { XmlComponent } from "file/xml-components";
|
||
|
|
||
|
export class MathSubSuperScriptProperties extends XmlComponent {
|
||
|
constructor() {
|
||
|
super("m:sSubSupPr");
|
||
|
}
|
||
|
}
|