Files
docx-js/src/file/paragraph/links/hyperlink-attributes.ts
2018-05-06 22:20:56 -05:00

14 lines
335 B
TypeScript

import { XmlAttributeComponent } from "file/xml-components";
export interface IHyperlinkAttributesProperties {
id?: string;
history: number;
}
export class HyperlinkAttributes extends XmlAttributeComponent<IHyperlinkAttributesProperties> {
protected xmlKeys = {
id: "r:id",
history: "w:history",
};
}