@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
32 lines • 895 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionEdit = void 0;
const index_1 = require("./../index");
class SelectionEdit {
constructor(data) {
this.select = (data.select || []).map(index_1.SelectionAnnotation.fromJson);
}
static getSelectDefault() {
return [];
}
static getSelectDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new SelectionEdit(data);
}
toJson() {
var _a;
return {
'select': (_a = this.select) === null || _a === void 0 ? void 0 : _a.map((data) => data.toJson()),
};
}
clone() {
return SelectionEdit.fromJson(this.toJson());
}
}
exports.SelectionEdit = SelectionEdit;
//# sourceMappingURL=SelectionEdit.js.map