UNPKG

@joefitter/docx

Version:

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

12 lines (9 loc) 269 B
// http://officeopenxml.com/drwSp-outline.php import { XmlComponent } from "file/xml-components"; import { NoFill } from "./no-fill"; export class Outline extends XmlComponent { constructor() { super("a:ln"); this.root.push(new NoFill()); } }