chromiumly
Version:
A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.
14 lines • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PdfFormat = void 0;
var PdfFormat;
(function (PdfFormat) {
/**
* @deprecated Starting from Gotenberg version 7.6, LibreOffice no longer provides support for PDF/A-1a.
* @see {@link https://gotenberg.dev/docs/troubleshooting#pdfa-1a}
*/
PdfFormat["A_1a"] = "PDF/A-1a";
PdfFormat["A_2b"] = "PDF/A-2b";
PdfFormat["A_3b"] = "PDF/A-3b";
})(PdfFormat || (exports.PdfFormat = PdfFormat = {}));
//# sourceMappingURL=constants.js.map