UNPKG

docx

Version:

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

10 lines (8 loc) 218 B
import { Run } from "../run"; import { Text } from "./run-components/text"; export class TextRun extends Run { constructor(text: string) { super(); this.root.push(new Text(text)); } }