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

12 lines
300 B
TypeScript
Raw Normal View History

2017-12-20 01:41:53 +00:00
import { XmlAttributeComponent } from "../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",
};
}