9 lines
270 B
TypeScript
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);
|
|
}
|