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
39 lines • 1.1 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileAttachmentAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");
class FileAttachmentAnnotation extends markupAnnotation_1.MarkupAnnotation {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(FileAttachmentAnnotation.attributeTypeMap);
}
}
exports.FileAttachmentAnnotation = FileAttachmentAnnotation;
FileAttachmentAnnotation.discriminator = undefined;
FileAttachmentAnnotation.attributeTypeMap = [
{
"name": "icon",
"baseName": "Icon",
"type": "FileIcon"
},
{
"name": "opacity",
"baseName": "Opacity",
"type": "number"
},
{
"name": "fileDescription",
"baseName": "FileDescription",
"type": "string"
},
{
"name": "fileName",
"baseName": "FileName",
"type": "string"
},
{
"name": "filePath",
"baseName": "FilePath",
"type": "string"
}
];
//# sourceMappingURL=fileAttachmentAnnotation.js.map
;