UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

10 lines (8 loc) 286 B
// http://officeopenxml.com/drwPicFloating-position.php import { XmlComponent } from "file/xml-components"; export class PositionOffset extends XmlComponent { constructor(offsetValue: number) { super("wp:posOffset"); this.root.push(offsetValue.toString()); } }