UNPKG

docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

17 lines (14 loc) 391 B
// http://officeopenxml.com/drwSp-size.php import { XmlComponent } from "file/xml-components"; import { OffsetAttributes } from "./off-attributes"; export class Offset extends XmlComponent { constructor() { super("a:off"); this.root.push( new OffsetAttributes({ x: 0, y: 0, }), ); } }