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
29 lines • 869 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RadioButtonField = void 0;
const choiceField_1 = require("./choiceField");
class RadioButtonField extends choiceField_1.ChoiceField {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(RadioButtonField.attributeTypeMap);
}
}
exports.RadioButtonField = RadioButtonField;
RadioButtonField.discriminator = undefined;
RadioButtonField.attributeTypeMap = [
{
"name": "options",
"baseName": "Options",
"type": "Array<Option>"
},
{
"name": "radioButtonOptionsField",
"baseName": "RadioButtonOptionsField",
"type": "Array<RadioButtonOptionField>"
},
{
"name": "style",
"baseName": "Style",
"type": "BoxStyle"
}
];
//# sourceMappingURL=radioButtonField.js.map
;