UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

9 lines (8 loc) 270 B
import { Run } from '../run'; export type IPageReferenceOptions = { readonly hyperlink?: boolean; readonly useRelativePosition?: boolean; }; export declare class PageReference extends Run { constructor(bookmarkId: string, options?: IPageReferenceOptions); }