Files
docx-js/ts/docx/run/text-run.ts
2017-03-08 21:49:41 +00:00

11 lines
195 B
TypeScript

import { Run } from "../run";
import { Text } from "./text";
export class TextRun extends Run {
constructor(text: string) {
super();
this.root.push(new Text(text));
}
}