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
24 lines • 726 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InkAnnotation = void 0;
const markupAnnotation_1 = require("./markupAnnotation");
class InkAnnotation extends markupAnnotation_1.MarkupAnnotation {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(InkAnnotation.attributeTypeMap);
}
}
exports.InkAnnotation = InkAnnotation;
InkAnnotation.discriminator = undefined;
InkAnnotation.attributeTypeMap = [
{
"name": "inkList",
"baseName": "InkList",
"type": "Array<Array<Point>>"
},
{
"name": "capStyle",
"baseName": "CapStyle",
"type": "CapStyle"
}
];
//# sourceMappingURL=inkAnnotation.js.map
;