2017-12-30 20:25:16 +00:00
|
|
|
import { XmlComponent } from "file/xml-components";
|
2017-03-27 01:28:52 +01:00
|
|
|
import { RelationshipsAttributes } from "./attributes";
|
|
|
|
|
|
|
|
export class Relationships extends XmlComponent {
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super("Relationships");
|
|
|
|
this.root.push(new RelationshipsAttributes({
|
|
|
|
xmlns: "http://schemas.openxmlformats.org/package/2006/relationships",
|
|
|
|
}));
|
|
|
|
|
|
|
|
// this.root.push(new Created());
|
|
|
|
}
|
|
|
|
}
|