docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
18 lines (17 loc) • 622 B
TypeScript
import { XmlComponent } from "../../../file/xml-components";
import { TextRun } from "../run";
export declare class Bookmark {
readonly linkId: number;
readonly start: BookmarkStart;
readonly text: TextRun;
readonly end: BookmarkEnd;
constructor(name: string, text: string, relationshipsCount: number);
}
export declare class BookmarkStart extends XmlComponent {
readonly linkId: number;
constructor(name: string, relationshipsCount: number);
}
export declare class BookmarkEnd extends XmlComponent {
readonly linkId: number;
constructor(relationshipsCount: number);
}