docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
14 lines (13 loc) • 438 B
TypeScript
import { XmlAttributeComponent } from "../../../file/xml-components";
export interface IHyperlinkAttributesProperties {
readonly id?: string;
readonly anchor?: string;
readonly history: number;
}
export declare class HyperlinkAttributes extends XmlAttributeComponent<IHyperlinkAttributesProperties> {
protected readonly xmlKeys: {
id: string;
history: string;
anchor: string;
};
}