Files
docx-js/ts/relationships/attributes.ts
2017-07-07 14:31:08 +01:00

12 lines
305 B
TypeScript

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