UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

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