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
44 lines • 1.17 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RedactionAnnotation = void 0;
const annotation_1 = require("./annotation");
class RedactionAnnotation extends annotation_1.Annotation {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(RedactionAnnotation.attributeTypeMap);
}
}
exports.RedactionAnnotation = RedactionAnnotation;
RedactionAnnotation.discriminator = undefined;
RedactionAnnotation.attributeTypeMap = [
{
"name": "quadPoint",
"baseName": "QuadPoint",
"type": "Array<Point>"
},
{
"name": "fillColor",
"baseName": "FillColor",
"type": "Color"
},
{
"name": "borderColor",
"baseName": "BorderColor",
"type": "Color"
},
{
"name": "overlayText",
"baseName": "OverlayText",
"type": "string"
},
{
"name": "repeat",
"baseName": "Repeat",
"type": "boolean"
},
{
"name": "textAlignment",
"baseName": "TextAlignment",
"type": "HorizontalAlignment"
}
];
//# sourceMappingURL=redactionAnnotation.js.map
;