Represents the parameters required to retrieve a link by index within a document page.

interface GetLinkType {
    doc: DocType;
    index: number;
    page: PageType;
}

Properties

Properties

doc: DocType

The document object from which to retrieve the link.

index: number

The index of the link to retrieve.

page: PageType

The page object within the document where the link is located.