Files
docx-js/ts/docx/run/text-run.ts

10 lines
198 B
TypeScript
Raw Normal View History

2016-03-30 03:50:53 +01:00
import {Text} from "../xml-components";
import {Run} from "../run";
export class TextRun extends Run {
constructor(text: string) {
super();
this.r.push(new Text(text));
}
}