UNPKG

docx

Version:

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

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()); } }