UNPKG

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) 415 B
import { XmlAttributeComponent } from '../../xml-components'; export type 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; }; }