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