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

12 lines
320 B
TypeScript
Raw Normal View History

import { XmlAttributeComponent } from "file/xml-components";
2017-03-27 01:28:52 +01:00
export interface IRelationshipsAttributesProperties {
readonly xmlns: string;
2017-03-27 01:28:52 +01:00
}
export class RelationshipsAttributes extends XmlAttributeComponent<IRelationshipsAttributesProperties> {
protected readonly xmlKeys = {
2017-03-27 01:28:52 +01:00
xmlns: "xmlns",
};
}