UNPKG

docx

Version:

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

11 lines (8 loc) 209 B
import { Run } from "file/paragraph"; import { Seperator } from "./seperator"; export class SeperatorRun extends Run { constructor() { super({}); this.root.push(new Seperator()); } }