Files
docx-js/ts/docx/document/body/body.ts

13 lines
240 B
TypeScript
Raw Normal View History

2017-09-19 15:39:14 +01:00
import { XmlComponent } from "../../xml-components";
export class Body extends XmlComponent {
constructor() {
super("w:body");
}
public push(component: XmlComponent): void {
this.root.push(component);
}
}