UNPKG

docx

Version:

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

11 lines (9 loc) 379 B
// http://officeopenxml.com/drwPicFloating-position.php import { HorizontalPositionAlign, VerticalPositionAlign } from "file/shared/alignment"; import { XmlComponent } from "file/xml-components"; export class Align extends XmlComponent { constructor(value: HorizontalPositionAlign | VerticalPositionAlign) { super("wp:align"); this.root.push(value); } }