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

9 lines
270 B
TypeScript

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