Files
docx-js/ts/docx/run/text-run.ts
Dolan Miu a0acb6d1a6 added run
2016-03-30 03:50:53 +01:00

10 lines
198 B
TypeScript

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