docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
14 lines (13 loc) • 425 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;
};
}