2017-03-27 01:28:52 +01:00
|
|
|
import { XmlAttributeComponent } from "../docx/xml-components";
|
|
|
|
|
2017-07-07 14:31:08 +01:00
|
|
|
export interface IRelationshipsAttributesProperties {
|
2017-03-27 01:28:52 +01:00
|
|
|
xmlns: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class RelationshipsAttributes extends XmlAttributeComponent<IRelationshipsAttributesProperties> {
|
|
|
|
protected xmlKeys = {
|
|
|
|
xmlns: "xmlns",
|
|
|
|
};
|
|
|
|
}
|