Skip to content

Commit 0bf16f3

Browse files
author
PSPDFKit
committed
Release 2.19.0
1 parent b928be3 commit 0bf16f3

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

lib/document/Bookmark.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
Object.defineProperty(exports, "__esModule", { value: true });
33
exports.Bookmark = void 0;
44
/**
5+
* A Bookmark is a named location in a document.
56
* @interface Bookmark
7+
* @memberof Bookmark
8+
* @property {string} [name] - The bookmark name. This is optional.
9+
* @property {string} displayName - The bookmark display name.
10+
* @property {string} identifier - A string uniquely identifying the bookmark.
11+
* @property {number} pageIndex - The page index on which the bookmark is located.
612
*/
713
var Bookmark = /** @class */ (function () {
814
function Bookmark() {

src/document/Bookmark.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
/**
2+
* A Bookmark is a named location in a document.
23
* @interface Bookmark
4+
* @memberof Bookmark
5+
* @property {string} [name] - The bookmark name. This is optional.
6+
* @property {string} displayName - The bookmark display name.
7+
* @property {string} identifier - A string uniquely identifying the bookmark.
8+
* @property {number} pageIndex - The page index on which the bookmark is located.
39
*/
410
export class Bookmark {
511
/**

types/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)