Files
docx-js/src/file/relationships/attributes.ts

12 lines
302 B
TypeScript
Raw Normal View History

import { XmlAttributeComponent } from "file/xml-components";
2017-03-27 01:28:52 +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",
};
}