docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
14 lines (11 loc) • 348 B
text/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",
};
}