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) 258 B
import { Run } from "file/paragraph"; import { ContinuationSeperator } from "./continuation-seperator"; export class ContinuationSeperatorRun extends Run { constructor() { super({}); this.root.push(new ContinuationSeperator()); } }