import {XmlComponent, Attributes} from "../xml-components"; import {Body} from "./body"; export class Document { private document: Array; constructor() { this.document = new Array(); this.document.push(new Attributes({})); this.document.push(new Body()); } test() { return "hello"; } }