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