Files
docx-js/src/file/paragraph/math/n-ary/math-super-script-hide.ts

11 lines
351 B
TypeScript
Raw Normal View History

2020-10-10 13:41:26 +01:00
// http://www.datypic.com/sc/ooxml/e-m_subHide-1.html
import { BuilderElement, XmlComponent } from "@file/xml-components";
2020-10-10 13:41:26 +01:00
export const createMathSuperScriptHide = (): XmlComponent =>
new BuilderElement<{ readonly hide: number }>({
name: "m:supHide",
attributes: {
hide: { key: "m:val", value: 1 },
},
});