Files
docx-js/src/file/relationships/attributes.ts
2021-03-15 00:11:39 +00:00

10 lines
232 B
TypeScript

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