Files
docx-js/ts/relationships/attributes.ts
2017-03-27 01:28:52 +01:00

12 lines
298 B
TypeScript

import { XmlAttributeComponent } from "../docx/xml-components";
interface IRelationshipsAttributesProperties {
xmlns: string;
}
export class RelationshipsAttributes extends XmlAttributeComponent<IRelationshipsAttributesProperties> {
protected xmlKeys = {
xmlns: "xmlns",
};
}