Files
study-bible-project/node_modules/docx/dist/file/paragraph/links/hyperlink-attributes.d.ts
T

14 lines
415 B
TypeScript

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;
};
}