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