asposepdfcloud
Version:
Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to diff
94 lines • 2.1 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Bookmark = void 0;
const linkElement_1 = require("./linkElement");
class Bookmark extends linkElement_1.LinkElement {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(Bookmark.attributeTypeMap);
}
}
exports.Bookmark = Bookmark;
Bookmark.discriminator = undefined;
Bookmark.attributeTypeMap = [
{
"name": "title",
"baseName": "Title",
"type": "string"
},
{
"name": "italic",
"baseName": "Italic",
"type": "boolean"
},
{
"name": "bold",
"baseName": "Bold",
"type": "boolean"
},
{
"name": "color",
"baseName": "Color",
"type": "Color"
},
{
"name": "action",
"baseName": "Action",
"type": "string"
},
{
"name": "level",
"baseName": "Level",
"type": "number"
},
{
"name": "destination",
"baseName": "Destination",
"type": "string"
},
{
"name": "pageDisplay",
"baseName": "PageDisplay",
"type": "string"
},
{
"name": "pageDisplayBottom",
"baseName": "PageDisplay_Bottom",
"type": "number"
},
{
"name": "pageDisplayLeft",
"baseName": "PageDisplay_Left",
"type": "number"
},
{
"name": "pageDisplayRight",
"baseName": "PageDisplay_Right",
"type": "number"
},
{
"name": "pageDisplayTop",
"baseName": "PageDisplay_Top",
"type": "number"
},
{
"name": "pageDisplayZoom",
"baseName": "PageDisplay_Zoom",
"type": "number"
},
{
"name": "pageNumber",
"baseName": "PageNumber",
"type": "number"
},
{
"name": "remoteFile",
"baseName": "RemoteFile",
"type": "string"
},
{
"name": "bookmarks",
"baseName": "Bookmarks",
"type": "Bookmarks"
}
];
//# sourceMappingURL=bookmark.js.map
;