UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

29 lines 962 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RemoveHeaderFooter = void 0; const index_1 = require("./../index"); class RemoveHeaderFooter { constructor(data) { this.headerFooterSelection = index_1.SelectionHeaderFooter.fromJson(data === null || data === void 0 ? void 0 : data.headerFooterSelection); } static getHeaderFooterSelectionDescription() { return ""; } static fromJson(data) { if (data === undefined || data === null) { return data; } return new RemoveHeaderFooter(data); } toJson() { var _a; return { 'headerFooterSelection': (_a = this.headerFooterSelection) === null || _a === void 0 ? void 0 : _a.toJson(), }; } clone() { return RemoveHeaderFooter.fromJson(this.toJson()); } } exports.RemoveHeaderFooter = RemoveHeaderFooter; //# sourceMappingURL=RemoveHeaderFooter.js.map