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

10 lines
232 B
TypeScript
Raw Normal View History

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