@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
21 lines • 559 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionBackground = void 0;
class SelectionBackground {
constructor(data) {
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new SelectionBackground(data);
}
toJson() {
return {};
}
clone() {
return SelectionBackground.fromJson(this.toJson());
}
}
exports.SelectionBackground = SelectionBackground;
//# sourceMappingURL=SelectionBackground.js.map