modern-pdf-lib 0.28.1 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -15,7 +15,7 @@ Create, parse, fill, merge, sign, and manipulate PDF documents<br />in Node, Den
15
15
 
16
16
  [![npm version](https://img.shields.io/npm/v/modern-pdf-lib?style=flat-square&color=cb3837)](https://www.npmjs.com/package/modern-pdf-lib)
17
17
  [![bundle size](https://img.shields.io/badge/gzip-36kb_core-blue?style=flat-square)](https://bundlephobia.com/package/modern-pdf-lib)
18
- [![tests](https://img.shields.io/badge/tests-6%2C302_passing-brightgreen?style=flat-square)](#)
18
+ [![tests](https://img.shields.io/badge/tests-6%2C359_passing-brightgreen?style=flat-square)](#)
19
19
  [![TypeScript](https://img.shields.io/badge/TypeScript-7.0-3178c6?style=flat-square&logo=typescript&logoColor=white)](#)
20
20
  [![License: MIT](https://img.shields.io/badge/license-MIT-yellow?style=flat-square)](LICENSE)
21
21
 
@@ -116,13 +116,15 @@ For environments without ES module support, use the IIFE bundle which exposes a
116
116
  </td>
117
117
  <td width="50%" valign="top">
118
118
 
119
- **Parse & Modify**
119
+ **Parse, Render & Modify**
120
120
  - Load existing PDFs (encrypted too)
121
121
  - Extract text with positions
122
+ - Render pages to PNG / Canvas (any DPI)
123
+ - Thumbnails & visual diff (pixel + SSIM)
124
+ - Extract embedded images & fonts
125
+ - OCR overlay & true content-removal redaction
122
126
  - Fill & flatten AcroForm fields
123
- - Merge, split, copy pages
124
- - Add / remove / reorder pages
125
- - Incremental saves
127
+ - Merge, split, copy pages; incremental saves
126
128
 
127
129
  </td>
128
130
  </tr>
@@ -621,7 +623,7 @@ modern-pdf-lib/
621
623
  metadata/ XMP metadata, viewer preferences
622
624
  wasm/ Rust crate sources (6 modules)
623
625
  cli/ CLI tool (modern-pdf optimize)
624
- tests/ 6,302 tests across 265 suites
626
+ tests/ 6,359 tests across 276 suites
625
627
  docs/ VitePress documentation
626
628
  ```
627
629
 
@@ -633,7 +635,7 @@ modern-pdf-lib/
633
635
  git clone https://github.com/ABCrimson/modern-pdf-lib.git
634
636
  cd modern-pdf-lib
635
637
  npm install
636
- npm test # 6,302 tests
638
+ npm test # 6,359 tests
637
639
  npm run typecheck # TypeScript 7.0 strict
638
640
  npm run build # ESM + CJS + declarations
639
641
  ```
package/dist/browser.cjs CHANGED
@@ -4,7 +4,7 @@ const require_pdfObjects = require("./pdfObjects-BcPlSI0a.cjs");
4
4
  const require_streamDecode = require("./streamDecode-kQ-REV7v.cjs");
5
5
  const require_pdfForm = require("./pdfForm-BVS_do95.cjs");
6
6
  const require_layout = require("./layout-DiO_3JLh.cjs");
7
- const require_src = require("./src-vNbsqoIy.cjs");
7
+ const require_src = require("./src-DQ63jYIR.cjs");
8
8
  const require_compressionAnalysis = require("./compressionAnalysis-DwxVCe4E.cjs");
9
9
  const require_bridge = require("./bridge-ByvzPu5h.cjs");
10
10
  const require_imageExtract = require("./imageExtract-DQomHJiA.cjs");
@@ -293,6 +293,7 @@ exports.PdfWorker = require_src.PdfWorker;
293
293
  exports.PdfWriter = require_pdfDocument.PdfWriter;
294
294
  exports.PluginError = require_src.PluginError;
295
295
  exports.RemovePageFromEmptyDocumentError = require_src.RemovePageFromEmptyDocumentError;
296
+ exports.RenderCache = require_src.RenderCache;
296
297
  exports.RichTextFieldReadError = require_src.RichTextFieldReadError;
297
298
  exports.SARIF_SCHEMA_URI = require_src.SARIF_SCHEMA_URI;
298
299
  exports.SRGB_ICC_PROFILE = require_src.SRGB_ICC_PROFILE;
@@ -320,6 +321,7 @@ exports.appendIncrementalUpdate = require_src.appendIncrementalUpdate;
320
321
  exports.applyFillColor = require_pdfDocument.applyFillColor;
321
322
  exports.applyHeaderFooter = require_src.applyHeaderFooter;
322
323
  exports.applyHeaderFooterToPage = require_src.applyHeaderFooterToPage;
324
+ exports.applyOcr = require_src.applyOcr;
323
325
  exports.applyOverflow = require_src.applyOverflow;
324
326
  exports.applyPreset = require_src.applyPreset;
325
327
  exports.applyRedaction = require_src.applyRedaction;
@@ -409,6 +411,8 @@ exports.code128ToOperators = require_src.code128ToOperators;
409
411
  exports.code39ToOperators = require_src.code39ToOperators;
410
412
  exports.colorToComponents = require_pdfDocument.colorToComponents;
411
413
  exports.colorToHex = require_pdfDocument.colorToHex;
414
+ exports.compareImages = require_src.compareImages;
415
+ exports.comparePages = require_src.comparePages;
412
416
  exports.componentsToColor = require_pdfDocument.componentsToColor;
413
417
  exports.computeCode39CheckDigit = require_src.computeCode39CheckDigit;
414
418
  exports.computeFileEncryptionKey = require_pdfDocument.computeFileEncryptionKey;
@@ -417,6 +421,7 @@ exports.computeImageDpi = require_compressionAnalysis.computeImageDpi;
417
421
  exports.computeObjectHash = require_src.computeObjectHash;
418
422
  exports.computeSignatureHash = require_pdfDocument.computeSignatureHash;
419
423
  exports.computeTargetDimensions = require_compressionAnalysis.computeTargetDimensions;
424
+ exports.computeTileGrid = require_src.computeTileGrid;
420
425
  exports.concatMatrix = require_pdfDocument.concatMatrix;
421
426
  exports.concatTransformationMatrix = require_pdfDocument.concatMatrix;
422
427
  exports.configureWasmLoader = require_loader.configureWasmLoader;
@@ -518,11 +523,13 @@ exports.estimateTextWidth = require_src.estimateTextWidth;
518
523
  exports.evaluateFunction = require_src.evaluateFunction;
519
524
  exports.extractCrlUrls = require_src.extractCrlUrls;
520
525
  exports.extractEmbeddedRevocationData = require_src.extractEmbeddedRevocationData;
526
+ exports.extractFonts = require_src.extractFonts;
521
527
  exports.extractIccProfile = require_batchOptimize.extractIccProfile;
522
528
  exports.extractImages = require_imageExtract.extractImages;
523
529
  exports.extractJpegMetadata = require_src.extractJpegMetadata;
524
530
  exports.extractMetrics = require_pdfDocument.extractMetrics;
525
531
  exports.extractOcspUrl = require_src.extractOcspUrl;
532
+ exports.extractPageImages = require_src.extractImages;
526
533
  exports.extractTables = require_src.extractTables;
527
534
  exports.extractText = require_compressionAnalysis.extractText;
528
535
  exports.extractTextWithPositions = require_compressionAnalysis.extractTextWithPositions;
@@ -565,6 +572,7 @@ exports.generateSrgbIccProfile = require_src.generateSrgbIccProfile;
565
572
  exports.generateStrikeOutAppearance = require_src.generateStrikeOutAppearance;
566
573
  exports.generateSymbolToUnicodeCmap = require_src.generateSymbolToUnicodeCmap;
567
574
  exports.generateTextAppearance = require_pdfForm.generateTextAppearance;
575
+ exports.generateThumbnail = require_src.generateThumbnail;
568
576
  exports.generateUnderlineAppearance = require_src.generateUnderlineAppearance;
569
577
  exports.generateWinAnsiToUnicodeCmap = require_src.generateWinAnsiToUnicodeCmap;
570
578
  exports.generateXRechnungCii = require_src.generateXRechnungCii;
@@ -602,6 +610,8 @@ exports.injectJpegMetadata = require_src.injectJpegMetadata;
602
610
  exports.insertPage = require_layout.insertPage;
603
611
  exports.instantiateWasmModuleStreaming = require_loader.instantiateWasmModuleStreaming;
604
612
  exports.interpolateLinearRgb = require_pdfDocument.interpolateLinearRgb;
613
+ exports.interpretContentStream = require_src.interpretContentStream;
614
+ exports.interpretPage = require_src.interpretPage;
605
615
  exports.isAccessible = require_pdfDocument.isAccessible;
606
616
  exports.isCacheAvailable = isCacheAvailable;
607
617
  exports.isCertificateRevoked = require_src.isCertificateRevoked;
@@ -681,6 +691,7 @@ exports.qrCodeToOperators = require_pdfDocument.qrCodeToOperators;
681
691
  exports.radialGradient = require_pdfDocument.radialGradient;
682
692
  exports.radians = require_pdfDocument.radians;
683
693
  exports.radiansToDegrees = require_pdfDocument.radiansToDegrees;
694
+ exports.rasterize = require_src.rasterize;
684
695
  exports.rc4 = require_pdfDocument.rc4;
685
696
  exports.readBarcode = require_src.readBarcode;
686
697
  exports.readCode128 = require_src.readCode128;
@@ -693,13 +704,18 @@ exports.recompressWebP = require_src.recompressWebP;
693
704
  exports.reconstructLines = require_src.reconstructLines;
694
705
  exports.reconstructParagraphs = require_src.reconstructParagraphs;
695
706
  exports.rectangleOp = require_pdfDocument.rectangle;
707
+ exports.redactRegions = require_src.redactRegions;
696
708
  exports.removeAllBookmarks = require_src.removeAllBookmarks;
697
709
  exports.removeBookmark = require_src.removeBookmark;
698
710
  exports.removePage = require_layout.removePage;
699
711
  exports.removePageLabels = require_pdfDocument.removePageLabels;
700
712
  exports.removePages = require_layout.removePages;
701
713
  exports.renderCodeFrame = require_src.renderCodeFrame;
714
+ exports.renderDisplayListToCanvas = require_src.renderDisplayListToCanvas;
702
715
  exports.renderMultiPageTable = require_pdfDocument.renderMultiPageTable;
716
+ exports.renderPageTile = require_src.renderPageTile;
717
+ exports.renderPageToCanvas = require_src.renderPageToCanvas;
718
+ exports.renderPageToImage = require_src.renderPageToImage;
703
719
  exports.renderStyledBarcode = require_src.renderStyledBarcode;
704
720
  exports.renderTable = require_pdfDocument.renderTable;
705
721
  exports.renderToPdf = require_src.renderToPdf;
@@ -1,9 +1,9 @@
1
- import { $ as generateOrderX, $a as extractIccProfile, $c as findSignatures, $i as PdfWorker, $l as aesDecryptCBC, $n as BatchOptions, $o as XmpValidationResult, $r as estimateTextWidth, $s as detectModifications, $t as DocTimeStampOptions, $u as buildDeviceNColorSpace, A as WorkerPoolOptions, Aa as encodePngFromPixels, Ac as checkCertificateStatus, Ad as IncrementalSaveResult, Ai as encodeUpcA, Al as PdfUnderlineAnnotation, An as TableExtractOptions, Ao as applyRedaction, Ar as InvalidColorError, As as IncrementalChange, At as buildThresholdHalftone, Au as endMarkedContent, B as renderToPdf, Ba as convertTiffCmykToRgb, Bc as encodeInteger, Bi as Code39Options, Bl as AFNumber_Format, Bn as ParsedPage, Bo as generatePdfAXmpBytes, Br as HeaderFooterContent, Bs as addCounterSignature, Bt as evaluateFunction, Bu as setCharacterSpacing, C as DeferredSignOptions, Ca as decodeWebP, Cc as extractEmbeddedRevocationData, Cd as setLineJoin, Ci as encodePdf417, Cl as PdfLineAnnotation, Cn as buildPieceInfo, Co as decodeJpegWasm, Cr as CombedTextLayoutError, Cs as validatePdfA, Ct as buildBoxDict, Cu as beginArtifact, D as signDeferred, Da as DirectEmbedResult, Dc as downloadCrl, Dd as isOpenTypeCFF, Di as dataMatrixToOperators, Dl as PdfHighlightAnnotation, Dn as DocumentPart, Do as OverlayAlignment, Dr as FieldExistsAsNonTerminalError, Ds as getLinearizationInfo, Dt as STANDARD_SPOT_FUNCTIONS, Du as beginMarkedContentWithProperties, E as SignatureAlgorithm, Ea as DirectEmbedOptions, Ec as validateCertificateChain, Ed as stroke, Ei as DataMatrixResult, El as PdfSquareAnnotation, En as buildRequirements, Eo as isJpegWasmReady, Er as FieldAlreadyExistsError, Es as delinearizePdf, Et as validateBoxGeometry, Eu as beginMarkedContentSequence, F as buildVtDpm, Fa as detectImageFormat, Fc as requestTimestamp, Fi as encodeEan13, Fl as PdfTextAnnotation, Fn as accessibilityPlugin, Fo as EnforcePdfAResult, Fr as PluginError, Fs as LtvOptions, Ft as ExponentialFunction, Fu as beginText, G as createRangeFetcher, Ga as injectJpegMetadata, Gc as encodeSequence, Gi as code128ToOperators, Gl as setFieldValue, Gn as PdfDocumentBuilder, Go as stripProhibitedFeatures, Gr as formatDate$1, Gs as FieldLockInfo, Gt as CollectionView, Gu as setTextRenderingMode, H as FetchLikeResponse, Ha as isCmykTiff, Hc as encodeOID, Hi as computeCode39CheckDigit, Hl as createSandbox, Hn as StreamingParserEvent, Ho as StripResult, Hr as HeaderFooterPosition, Hs as DiffEntry, Ht as markdownToPdf, Hu as setFontSize, I as gtsPdfVtVersion, Ia as getImageFormatName, Ic as SignatureOptions, Ii as encodeEan8, Il as TextAnnotationIcon, In as MetadataPluginOptions, Io as EnforcementAction, Ir as RemovePageFromEmptyDocumentError, Is as buildDssDictionary, It as PdfFunctionDef, Iu as endText, J as ScriptRun, Ja as ImageDpi, Jc as encodeUtf8String, Ji as valuesToModules, Jl as AFSpecial_Format, Jn as getInlineWasmSize, Jo as AssociatedFileResult, Jr as toRoman, Js as buildFieldLockDict, Jt as Paragraph, Ju as showText, K as FallbackFont, Ka as JpegMarkerInfo, Kc as encodeSet, Ki as encodeCode128, Kl as addVisibilityAction, Kn as WasmModuleName, Ko as AFRelationship, Kr as replaceTemplateVariables, Ks as FieldLockOptions, Kt as buildCollection, Ku as setTextRise, L as RenderOptions, La as getSupportedFormats, Lc as SignerInfo, Li as ItfOptions, Ll as AFDate_FormatEx, Ln as metadataPlugin, Lo as enforcePdfAFull, Lr as RichTextFieldReadError, Ls as embedLtvData, Lt as PostScriptFunction, Lu as moveText, M as PdfVtConformance, Ma as webpToJpeg, Mc as TimestampResult, Md as saveIncremental, Mi as calculateEanCheckDigit, Ml as PdfFreeTextAnnotation, Mn as tableToCsv, Mo as enforcePdfX, Mr as InvalidPageSizeError, Ms as findChangedObjects, Mt as buildType5Halftone, Mu as drawImageWithMatrix, N as RecordMetadata, Na as webpToPng, Nc as buildTimestampRequest, Ni as ean13ToOperators, Nl as LinkHighlightMode, Nn as tableToJson, No as validatePdfX, Nr as MissingOnValueCheckError, Ns as optimizeIncrementalSave, Nt as identityTransferFunction, Nu as drawImageXObject, O as TaskRunner, Oa as canDirectEmbed, Oc as extractCrlUrls, Od as isTrueType, Oi as encodeDataMatrix, Ol as PdfSquigglyAnnotation, On as buildDPartRoot, Oo as RedactionOperatorOptions, Or as FontNotEmbeddedError, Os as isLinearized, Ot as Type1Halftone, Ou as createMarkedContentScope, P as buildPdfVtDParts, Pa as ImageFormat, Pc as parseTimestampResponse, Pi as ean8ToOperators, Pl as PdfLinkAnnotation, Pn as AccessibilityPluginOptions, Po as EnforcePdfAOptions, Pr as NoSuchFieldError, Ps as DssData, Pt as nameHalftone, Pu as drawXObject, Q as XRechnungOptions, Qa as embedIccProfile, Qc as embedSignature, Qi as base64Encode, Ql as sha512, Qn as BatchErrorStrategy, Qo as XmpIssue, Qr as ellipsisText, Qs as ModificationViolationType, Qt as DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, Qu as showTextWithSpacing, R as VNode, Ra as TiffCmykEmbedResult, Rc as buildPkcs7Signature, Ri as encodeItf, Rl as formatDate, Rn as TimestampPluginOptions, Ro as PdfAXmpOptions, Rr as StreamingParseError, Rs as hasLtvData, Rt as SampledFunction, Ru as moveTextSetLeading, S as readWoffHeader, Sa as WebPImage, Sc as TrustStore, Sd as setLineCap, Si as Pdf417Options, Sl as PdfCircleAnnotation, Sn as buildNamespacesArray, So as JpegWasmModule, Sr as BatchProcessingError, Ss as enforcePdfA, St as PdfX6Variant, Su as MarkedContentScope, T as ExternalSigner, Ta as isWebPLossless, Tc as buildCertificateChain, Td as setMiterLimit, Ti as DataMatrixOptions, Tl as PdfPolygonAnnotation, Tn as buildRequirement, To as initJpegWasm, Tr as ExceededMaxLengthError, Ts as LinearizationOptions, Tt as buildPdfX6OutputIntent, Tu as beginMarkedContent, U as RangeFetchOptions, Ua as JpegMetadata, Uc as encodeOctetString, Ui as encodeCode39, Ul as getFieldValue, Un as StreamingParserOptions, Uo as StrippedFeature, Ur as applyHeaderFooter, Us as DocumentDiff, Ut as CollectionOptions, Uu as setLeading, V as FetchLike, Va as embedTiffCmyk, Vc as encodeLength, Vi as code39ToOperators, Vl as formatNumber, Vn as StreamingParseResult, Vo as StripOptions, Vr as HeaderFooterOptions, Vs as getCounterSignatures, Vt as MarkdownToPdfOptions, Vu as setFont, W as RangeFetcher, Wa as extractJpegMetadata, Wc as encodePrintableString, Wi as Code128Options, Wl as resolveFieldReference, Wn as StreamingPdfParser, Wo as countOccurrences, Wr as applyHeaderFooterToPage, Ws as diffSignedContent, Wt as CollectionSchemaField, Wu as setTextMatrix, X as splitByScript, Xa as computeTargetDimensions, Xc as PrepareAppearanceOptions, Xi as BarcodeOptions, Xl as sha256, Xn as isValidModuleName, Xo as createAssociatedFile, Xr as OverflowResult, Xs as ModificationReport, Xt as reconstructLines, Xu as showTextHex, Y as resolveFallback, Ya as computeImageDpi, Yc as ByteRangeResult, Yi as BarcodeMatrix, Yl as validateFieldValue, Yn as hasInlineWasmData, Yo as buildAfArray, Yr as OverflowMode, Ys as getFieldLocks, Yt as ReconstructOptions, Yu as showTextArray, Z as OrderXType, Za as IccProfile, Zc as computeSignatureHash, Zi as base64Decode, Zl as sha384, Zn as preloadInlineWasm, Zo as ParsedXmpMetadata, Zr as applyOverflow, Zs as ModificationViolation, Zt as reconstructParagraphs, Zu as showTextNextLine, _ as parseTileInfo, _a as decodeTiffAll, _c as verifySignatureDetailed, _d as lineTo, _i as readEan8, _l as PdfRedactAnnotation, _n as toSarif, _o as estimateJpegQuality, _r as FlattenFormResult, _s as detectTransparency, _t as InvoiceParty, _u as buildXmpMetadata, a as layoutColumns, aa as detectRuntime, ac as SignatureChainResult, ad as closeFillAndStroke, ai as TablePreset, al as generateHighlightAppearance, an as buildCalRGB, ao as deduplicateImages, ar as PageLabelRange, as as getSupportedLevels, at as buildPdfA4Xmp, au as verifyOwnerPassword, b as isWoff, ba as isTiff, bc as validateExtendedKeyUsage, bd as setDashPattern, bi as renderStyledBarcode, bl as StandardStampName, bn as PDF2_NAMESPACE, bo as ChromaSubsampling, br as flattenFields, bs as PdfALevel, bt as PdfRect, bu as PdfStreamWriter, c as downscale16To8, ca as isWasmModuleCached, cc as IncrementalObject, cd as curveTo, ci as borderedPreset, cl as generateSquareAppearance, cn as DEFAULT_SARIF_TOOL_NAME, co as OptimizationReport, cr as removePageLabels, cs as generateWinAnsiToUnicodeCmap, ct as buildFunctionShading, cu as PdfUaError, d as offsetSignedToUnsigned, da as provideWasmBytes, dc as TrailerInfo, dd as ellipsePath, di as stripedPreset, dl as generateUnderlineAppearance, dn as SarifLog, do as DownscaleOptions, dr as BookmarkNode, ds as OutputIntentOptions, dt as didYouMean, du as PdfUaWarning, ea as PdfWorkerOptions, ec as MdpPermission, ed as buildSeparationColorSpace, ei as shrinkFontSize, el as prepareForSigning, en as buildDocTimeStampDict, eo as parseIccColorSpace, er as BatchProgressCallback, es as extractXmpMetadata, et as generateXRechnungCii, eu as aesEncryptCBC, f as summarizeBitDepth, fa as resetWasmLoader, fc as appendIncrementalUpdate, fd as endPath, fi as BarcodeReadResult, fl as FileAttachmentIcon, fn as SarifResult, fo as ImageOptimizeOptions, fr as BookmarkRef, fs as buildOutputIntent, ft as levenshtein, fu as enforcePdfUa, g as decodeTileRegion, ga as decodeTiff, gc as validateByteRangeIntegrity, gd as fillEvenOddAndStroke, gi as readEan13, gl as PdfPopupAnnotation, gn as toJsonReport, go as downscaleImage, gr as removeBookmark, gs as TransparencyInfo, gt as InvoiceLine, gu as summarizeIssues, h as decodeTile, ha as TiffImage, hc as saveIncrementalWithSignaturePreservation, hd as fillEvenOdd, hi as readCode39, hl as PdfCaretAnnotation, hn as ValidationLevel, ho as RecompressOptions, hr as removeAllBookmarks, hs as TransparencyFinding, ht as Invoice, hu as isAccessible, i as findHyphenationPoints, ia as configureWasmLoader, ic as SignatureChainEntry, id as closeAndStroke, ii as PresetOptions, il as generateFreeTextAppearance, in as buildCalGray, io as DeduplicationReport, ir as processBatch, is as getProfile, it as PdfA4Options, iu as computeFileEncryptionKey, j as createWorkerPool, ja as recompressWebP, jc as extractOcspUrl, jd as saveDocumentIncremental, ji as upcAToOperators, jl as FreeTextAlignment, jn as extractTables, jo as buildPdfXOutputIntent, jr as InvalidFieldNamePartError, js as computeObjectHash, jt as buildType1Halftone, ju as wrapInMarkedContent, k as WorkerPool, ka as embedTiffDirect, kc as isCertificateRevoked, kd as ChangeTracker, ki as calculateUpcCheckDigit, kl as PdfStrikeOutAnnotation, kn as ExtractedTable, ko as RedactionResult, kr as ForeignPageError, ks as linearizePdf, kt as buildSampledTransferFunction, ku as endArtifact, l as getComponentDepths, la as loadWasmModule, lc as IncrementalSaveOptions, ld as curveToFinal, li as minimalPreset, ll as generateSquigglyAppearance, ln as JsonReport, lo as ProgressInfo, lr as setPageLabels, ls as generateZapfDingbatsToUnicodeCmap, lt as sampleShadingColor, lu as PdfUaLevel, m as assembleTiles, ma as TiffDecodeOptions, mc as parseExistingTrailer, md as fillAndStroke, mi as readCode128, ml as CaretSymbol, mn as ValidationFinding, mo as RawImageData, mr as getBookmarks, ms as generateSrgbIccProfile, mt as FacturXProfile, mu as checkAccessibility, n as index_d_exports, na as WasmLoaderConfig, nc as getCertificationLevel, nd as clip, ni as wrapText, nl as searchTextItems, nn as CalRGBParams, no as convertToGrayscale, nr as batchFlatten, ns as validateXmpMetadata, nt as PdfA4ExtensionSchema, nu as md5, o as layoutParagraph, oa as instantiateWasmModuleStreaming, oc as validateSignatureChain, od as closeFillEvenOddAndStroke, oi as applyPreset, ol as generateInkAppearance, on as buildLab, oo as BatchOptimizeOptions, or as PageLabelStyle, os as isValidLevel, ot as pdfA4Rules, ou as verifyUserPassword, p as upscale8To16, pa as IfdEntry, pc as findExistingSignatures, pd as fill, pi as readBarcode, pl as PdfFileAttachmentAnnotation, pn as SarifRun, po as OptimizeResult, pr as addBookmark, ps as SRGB_ICC_PROFILE, pt as renderCodeFrame, pu as validatePdfUa, q as FallbackRun, qa as analyzeJpegMarkers, qc as encodeUTCTime, qi as encodeCode128Values, ql as setFieldVisibility, qn as getInlineWasmBytes, qo as AssociatedFileOptions, qr as toAlpha, qs as addFieldLock, qt as Line, qu as setWordSpacing, r as initWasm, ra as clearWasmCache, rc as setCertificationLevel, rd as clipEvenOdd, ri as PresetName, rl as generateCircleAppearance, rn as LabParams, ro as isGrayscaleImage, rr as batchMerge, rs as PdfAProfile, rt as PdfA4Level, ru as EncryptDictValues, s as layoutTextFlow, sa as isWasmDisabled, sc as AppendOptions, sd as closePath, si as applyTablePreset, sl as generateLineAppearance, sn as labToRgb, so as ImageOptimizeEntry, sr as getPageLabels, ss as generateSymbolToUnicodeCmap, st as FunctionShadingOptions, su as PdfUaEnforcementResult, t as InitWasmOptions, ta as RuntimeKind, tc as buildDocMdpReference, td as circlePath, ti as truncateText, tl as decodeJpeg2000, tn as CalGrayParams, to as parseIccDescription, tr as BatchResult, ts as parseXmpMetadata$1, tt as PdfA4ExtensionProperty, tu as rc4, u as normalizeComponentDepth, ua as loadWasmModuleStreaming, uc as SignatureByteRange, ud as curveToInitial, ui as professionalPreset, ul as generateStrikeOutAppearance, un as SARIF_SCHEMA_URI, uo as optimizeAllImages, ur as AddBookmarkOptions, us as getToUnicodeCmap, ut as CodeFrameOptions, uu as PdfUaValidationResult, v as WoffInfo, va as decodeTiffPage, vc as EKU_OIDS, vd as moveTo, vi as StyledBarcodeOptions, vl as PdfInkAnnotation, vn as MATHML_NAMESPACE, vo as optimizeImage, vr as FlattenOptions, vs as flattenTransparency, vt as generateCiiXml, vu as createXmpStream, w as DeferredSignResult, wa as isWebP, wc as verifyOfflineRevocation, wd as setLineWidth, wi as pdf417ToOperators, wl as PdfPolyLineAnnotation, wn as RequirementType, wo as encodeJpegWasm, wr as EncryptedPdfError, ws as LinearizationInfo, wt as buildGtsPdfxVersion, wu as beginArtifactWithType, x as isWoff2, xa as parseTiffIfd, xc as validateKeyUsage, xd as setFlatness, xi as Pdf417Matrix, xl as LineEndingStyle, xn as buildNamespace, xo as JpegDecodeResult, xr as flattenForm, xs as PdfAValidationResult, xt as PdfX6Options, xu as PDFOperator, y as decodeWoff, ya as getTiffPageCount, yc as validateCertificatePolicy, yd as rectangle, yi as calculateBarcodeDimensions, yl as PdfStampAnnotation, yn as NamespaceDef, yo as recompressImage, yr as flattenField, ys as PdfAIssue, yt as BoxGeometry, yu as parseXmpMetadata, z as h, za as TiffIfdEntry, zc as encodeContextTag, zi as itfToOperators, zl as parseAcrobatDate, zn as timestampPlugin, zo as generatePdfAXmp, zr as UnexpectedFieldTypeError, zs as CounterSignatureInfo, zt as StitchingFunction, zu as nextLine } from "./index-_Onej9Wy.cjs";
1
+ import { $ as normalizeComponentDepth, $a as loadWasmModuleStreaming, $c as SignatureByteRange, $d as curveToInitial, $i as professionalPreset, $l as generateStrikeOutAppearance, $n as SARIF_SCHEMA_URI, $o as optimizeAllImages, $r as AddBookmarkOptions, $s as getToUnicodeCmap, $t as CodeFrameOptions, $u as PdfUaValidationResult, A as renderPageToCanvas, Aa as code39ToOperators, Ac as getCounterSignatures, Ad as setFont, Ai as HeaderFooterOptions, Al as encodeLength, An as MarkdownToPdfOptions, Ao as embedTiffCmyk, Ar as StreamingParseResult, As as StripOptions, At as FetchLike, Au as formatNumber, B as FillItem, Ba as base64Decode, Bc as ModificationViolation, Bd as showTextNextLine, Bi as applyOverflow, Bl as computeSignatureHash, Bn as reconstructParagraphs, Bo as IccProfile, Br as preloadInlineWasm, Bs as ParsedXmpMetadata, Bt as OrderXType, Bu as sha384, C as ExtractedImage, Ca as ean8ToOperators, Cc as DssData, Cd as drawXObject, Ci as NoSuchFieldError, Cl as parseTimestampResponse, Cn as nameHalftone, Co as ImageFormat, Cr as AccessibilityPluginOptions, Cs as EnforcePdfAOptions, Ct as buildPdfVtDParts, Cu as PdfLinkAnnotation, D as Canvas2DLike, Da as encodeItf, Dc as hasLtvData, Dd as moveTextSetLeading, Di as StreamingParseError, Dl as buildPkcs7Signature, Dn as SampledFunction, Do as TiffCmykEmbedResult, Dr as TimestampPluginOptions, Ds as PdfAXmpOptions, Dt as VNode, Du as formatDate, E as generateThumbnail, Ea as ItfOptions, Ec as embedLtvData, Ed as moveText, Ei as RichTextFieldReadError, El as SignerInfo, En as PostScriptFunction, Eo as getSupportedFormats, Er as metadataPlugin, Es as enforcePdfAFull, Et as RenderOptions$1, Eu as AFDate_FormatEx, F as InterpretOptions, Fa as encodeCode128, Fc as FieldLockOptions, Fd as setTextRise, Fi as replaceTemplateVariables, Fl as encodeSet, Fn as buildCollection, Fo as JpegMarkerInfo, Fr as WasmModuleName, Fs as AFRelationship, Ft as FallbackFont, Fu as addVisibilityAction, G as TextItem, Ga as WasmLoaderConfig, Gc as getCertificationLevel, Gd as clip, Gi as wrapText, Gl as searchTextItems, Gn as CalRGBParams, Go as convertToGrayscale, Gr as batchFlatten, Gs as validateXmpMetadata, Gt as PdfA4ExtensionSchema, Gu as md5, H as Rgba, Ha as PdfWorker, Hc as detectModifications, Hd as buildDeviceNColorSpace, Hi as estimateTextWidth, Hl as findSignatures, Hn as DocTimeStampOptions, Ho as extractIccProfile, Hr as BatchOptions, Hs as XmpValidationResult, Ht as generateOrderX, Hu as aesDecryptCBC, I as interpretContentStream, Ia as encodeCode128Values, Ic as addFieldLock, Id as setWordSpacing, Ii as toAlpha, Il as encodeUTCTime, In as Line, Io as analyzeJpegMarkers, Ir as getInlineWasmBytes, Is as AssociatedFileOptions, It as FallbackRun, Iu as setFieldVisibility, J as layoutColumns, Ja as detectRuntime, Jc as SignatureChainResult, Jd as closeFillAndStroke, Ji as TablePreset, Jl as generateHighlightAppearance, Jn as buildCalRGB, Jo as deduplicateImages, Jr as PageLabelRange, Js as getSupportedLevels, Jt as buildPdfA4Xmp, Ju as verifyOwnerPassword, K as Matrix, Ka as clearWasmCache, Kc as setCertificationLevel, Kd as clipEvenOdd, Ki as PresetName, Kl as generateCircleAppearance, Kn as LabParams, Ko as isGrayscaleImage, Kr as batchMerge, Ks as PdfAProfile, Kt as PdfA4Level, Ku as EncryptDictValues, L as interpretPage, La as valuesToModules, Lc as buildFieldLockDict, Ld as showText, Li as toRoman, Ll as encodeUtf8String, Ln as Paragraph, Lo as ImageDpi, Lr as getInlineWasmSize, Ls as AssociatedFileResult, Lt as ScriptRun, Lu as AFSpecial_Format, M as RenderOptions, Ma as encodeCode39, Mc as DocumentDiff, Md as setLeading, Mi as applyHeaderFooter, Ml as encodeOctetString, Mn as CollectionOptions, Mo as JpegMetadata, Mr as StreamingParserOptions, Ms as StrippedFeature, Mt as RangeFetchOptions, Mu as getFieldValue, N as rasterize, Na as Code128Options, Nc as diffSignedContent, Nd as setTextMatrix, Ni as applyHeaderFooterToPage, Nl as encodePrintableString, Nn as CollectionSchemaField, No as extractJpegMetadata, Nr as StreamingPdfParser, Ns as countOccurrences, Nt as RangeFetcher, Nu as resolveFieldReference, O as CanvasRenderOptions, Oa as itfToOperators, Oc as CounterSignatureInfo, Od as nextLine, Oi as UnexpectedFieldTypeError, Ol as encodeContextTag, On as StitchingFunction, Oo as TiffIfdEntry, Or as timestampPlugin, Os as generatePdfAXmp, Ot as h, Ou as parseAcrobatDate, P as renderPageToImage, Pa as code128ToOperators, Pc as FieldLockInfo, Pd as setTextRenderingMode, Pi as formatDate$1, Pl as encodeSequence, Pn as CollectionView, Po as injectJpegMetadata, Pr as PdfDocumentBuilder, Ps as stripProhibitedFeatures, Pt as createRangeFetcher, Pu as setFieldValue, Q as getComponentDepths, Qa as loadWasmModule, Qc as IncrementalSaveOptions, Qd as curveToFinal, Qi as minimalPreset, Ql as generateSquigglyAppearance, Qn as JsonReport, Qo as ProgressInfo, Qr as setPageLabels, Qs as generateZapfDingbatsToUnicodeCmap, Qt as sampleShadingColor, Qu as PdfUaLevel, R as DisplayItem, Ra as BarcodeMatrix, Rc as getFieldLocks, Rd as showTextArray, Ri as OverflowMode, Rl as ByteRangeResult, Rn as ReconstructOptions, Ro as computeImageDpi, Rr as hasInlineWasmData, Rs as buildAfArray, Rt as resolveFallback, Ru as validateFieldValue, S as extractFonts, Sa as ean13ToOperators, Sc as optimizeIncrementalSave, Sd as drawImageXObject, Si as MissingOnValueCheckError, Sl as buildTimestampRequest, Sn as identityTransferFunction, So as webpToPng, Sr as tableToJson, Ss as validatePdfX, St as RecordMetadata, Su as LinkHighlightMode, T as ThumbnailOptions, Ta as encodeEan8, Tc as buildDssDictionary, Td as endText, Ti as RemovePageFromEmptyDocumentError, Tl as SignatureOptions, Tn as PdfFunctionDef, To as getImageFormatName, Tr as MetadataPluginOptions, Ts as EnforcementAction, Tt as gtsPdfVtVersion, Tu as TextAnnotationIcon, U as StrokeItem, Ua as PdfWorkerOptions, Uc as MdpPermission, Ud as buildSeparationColorSpace, Ui as shrinkFontSize, Ul as prepareForSigning, Un as buildDocTimeStampDict, Uo as parseIccColorSpace, Ur as BatchProgressCallback, Us as extractXmpMetadata, Ut as generateXRechnungCii, Uu as aesEncryptCBC, V as ImageItem, Va as base64Encode, Vc as ModificationViolationType, Vd as showTextWithSpacing, Vi as ellipsisText, Vl as embedSignature, Vn as DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, Vo as embedIccProfile, Vr as BatchErrorStrategy, Vs as XmpIssue, Vt as XRechnungOptions, Vu as sha512, W as SubPath, Wa as RuntimeKind, Wc as buildDocMdpReference, Wd as circlePath, Wi as truncateText, Wl as decodeJpeg2000, Wn as CalGrayParams, Wo as parseIccDescription, Wr as BatchResult, Ws as parseXmpMetadata$1, Wt as PdfA4ExtensionProperty, Wu as rc4, X as layoutTextFlow, Xa as isWasmDisabled, Xc as AppendOptions, Xd as closePath, Xi as applyTablePreset, Xl as generateLineAppearance, Xn as labToRgb, Xo as ImageOptimizeEntry, Xr as getPageLabels, Xs as generateSymbolToUnicodeCmap, Xt as FunctionShadingOptions, Xu as PdfUaEnforcementResult, Y as layoutParagraph, Ya as instantiateWasmModuleStreaming, Yc as validateSignatureChain, Yd as closeFillEvenOddAndStroke, Yi as applyPreset, Yl as generateInkAppearance, Yn as buildLab, Yo as BatchOptimizeOptions, Yr as PageLabelStyle, Ys as isValidLevel, Yt as pdfA4Rules, Yu as verifyUserPassword, Z as downscale16To8, Za as isWasmModuleCached, Zc as IncrementalObject, Zd as curveTo, Zi as borderedPreset, Zl as generateSquareAppearance, Zn as DEFAULT_SARIF_TOOL_NAME, Zo as OptimizationReport, Zr as removePageLabels, Zs as generateWinAnsiToUnicodeCmap, Zt as buildFunctionShading, Zu as PdfUaError, _ as DiffResult, _a as encodeDataMatrix, _c as isLinearized, _d as createMarkedContentScope, _f as isTrueType, _i as FontNotEmbeddedError, _l as extractCrlUrls, _n as Type1Halftone, _o as canDirectEmbed, _r as buildDPartRoot, _s as RedactionOperatorOptions, _t as TaskRunner, _u as PdfSquigglyAnnotation, a as TileGrid, aa as readEan13, ac as TransparencyInfo, ad as summarizeIssues, af as fillEvenOddAndStroke, ai as removeBookmark, al as validateByteRangeIntegrity, an as InvoiceLine, ao as decodeTiff, ar as toJsonReport, as as downscaleImage, at as decodeTileRegion, au as PdfPopupAnnotation, b as ExtractedFont, ba as upcAToOperators, bc as computeObjectHash, bd as wrapInMarkedContent, bf as saveDocumentIncremental, bi as InvalidFieldNamePartError, bl as extractOcspUrl, bn as buildType1Halftone, bo as recompressWebP, br as extractTables, bs as buildPdfXOutputIntent, bt as createWorkerPool, bu as FreeTextAlignment, c as renderPageTile, ca as calculateBarcodeDimensions, cc as PdfAIssue, cd as parseXmpMetadata, cf as rectangle, ci as flattenField, cl as validateCertificatePolicy, cn as BoxGeometry, co as getTiffPageCount, cr as NamespaceDef, cs as recompressImage, ct as decodeWoff, cu as PdfStampAnnotation, d as redactRegions, da as Pdf417Options, dc as enforcePdfA, dd as MarkedContentScope, df as setLineCap, di as BatchProcessingError, dl as TrustStore, dn as PdfX6Variant, do as WebPImage, dr as buildNamespacesArray, ds as JpegWasmModule, dt as readWoffHeader, du as PdfCircleAnnotation, ea as stripedPreset, ec as OutputIntentOptions, ed as PdfUaWarning, ef as ellipsePath, ei as BookmarkNode, el as TrailerInfo, en as didYouMean, eo as provideWasmBytes, er as SarifLog, es as DownscaleOptions, et as offsetSignedToUnsigned, eu as generateUnderlineAppearance, f as ApplyOcrOptions, fa as encodePdf417, fc as validatePdfA, fd as beginArtifact, ff as setLineJoin, fi as CombedTextLayoutError, fl as extractEmbeddedRevocationData, fn as buildBoxDict, fo as decodeWebP, fr as buildPieceInfo, fs as decodeJpegWasm, ft as DeferredSignOptions, fu as PdfLineAnnotation, g as CompareOptions, ga as dataMatrixToOperators, gc as getLinearizationInfo, gd as beginMarkedContentWithProperties, gf as isOpenTypeCFF, gi as FieldExistsAsNonTerminalError, gl as downloadCrl, gn as STANDARD_SPOT_FUNCTIONS, go as DirectEmbedResult, gr as DocumentPart, gs as OverlayAlignment, gt as signDeferred, gu as PdfHighlightAnnotation, h as applyOcr, ha as DataMatrixResult, hc as delinearizePdf, hd as beginMarkedContentSequence, hf as stroke, hi as FieldAlreadyExistsError, hl as validateCertificateChain, hn as validateBoxGeometry, ho as DirectEmbedOptions, hr as buildRequirements, hs as isJpegWasmReady, ht as SignatureAlgorithm, hu as PdfSquareAnnotation, i as RenderCache, ia as readCode39, ic as TransparencyFinding, id as isAccessible, if as fillEvenOdd, ii as removeAllBookmarks, il as saveIncrementalWithSignaturePreservation, in as Invoice, io as TiffImage, ir as ValidationLevel, is as RecompressOptions, it as decodeTile, iu as PdfCaretAnnotation, j as RasterImage, ja as computeCode39CheckDigit, jc as DiffEntry, jd as setFontSize, ji as HeaderFooterPosition, jl as encodeOID, jn as markdownToPdf, jo as isCmykTiff, jr as StreamingParserEvent, js as StripResult, jt as FetchLikeResponse, ju as createSandbox, k as renderDisplayListToCanvas, ka as Code39Options, kc as addCounterSignature, kd as setCharacterSpacing, ki as HeaderFooterContent, kl as encodeInteger, kn as evaluateFunction, ko as convertTiffCmykToRgb, kr as ParsedPage, ks as generatePdfAXmpBytes, kt as renderToPdf, ku as AFNumber_Format, l as RedactRect, la as renderStyledBarcode, lc as PdfALevel, ld as PdfStreamWriter, lf as setDashPattern, li as flattenFields, ll as validateExtendedKeyUsage, ln as PdfRect, lo as isTiff, lr as PDF2_NAMESPACE, ls as ChromaSubsampling, lt as isWoff, lu as StandardStampName, m as OcrWord, ma as DataMatrixOptions, mc as LinearizationOptions, md as beginMarkedContent, mf as setMiterLimit, mi as ExceededMaxLengthError, ml as buildCertificateChain, mn as buildPdfX6OutputIntent, mo as isWebPLossless, mr as buildRequirement, ms as initJpegWasm, mt as ExternalSigner, mu as PdfPolygonAnnotation, n as index_d_exports, na as readBarcode, nc as SRGB_ICC_PROFILE, nd as validatePdfUa, nf as fill, ni as addBookmark, nl as findExistingSignatures, nn as renderCodeFrame, no as IfdEntry, nr as SarifRun, ns as OptimizeResult, nt as upscale8To16, nu as PdfFileAttachmentAnnotation, o as TileOptions, oa as readEan8, oc as detectTransparency, od as buildXmpMetadata, of as lineTo, oi as FlattenFormResult, ol as verifySignatureDetailed, on as InvoiceParty, oo as decodeTiffAll, or as toSarif, os as estimateJpegQuality, ot as parseTileInfo, ou as PdfRedactAnnotation, p as OcrEngine, pa as pdf417ToOperators, pc as LinearizationInfo, pd as beginArtifactWithType, pf as setLineWidth, pi as EncryptedPdfError, pl as verifyOfflineRevocation, pn as buildGtsPdfxVersion, po as isWebP, pr as RequirementType, ps as encodeJpegWasm, pt as DeferredSignResult, pu as PdfPolyLineAnnotation, q as findHyphenationPoints, qa as configureWasmLoader, qc as SignatureChainEntry, qd as closeAndStroke, qi as PresetOptions, ql as generateFreeTextAppearance, qn as buildCalGray, qo as DeduplicationReport, qr as processBatch, qs as getProfile, qt as PdfA4Options, qu as computeFileEncryptionKey, r as initWasm, ra as readCode128, rc as generateSrgbIccProfile, rd as checkAccessibility, rf as fillAndStroke, ri as getBookmarks, rl as parseExistingTrailer, rn as FacturXProfile, ro as TiffDecodeOptions, rr as ValidationFinding, rs as RawImageData, rt as assembleTiles, ru as CaretSymbol, s as computeTileGrid, sa as StyledBarcodeOptions, sc as flattenTransparency, sd as createXmpStream, sf as moveTo, si as FlattenOptions, sl as EKU_OIDS, sn as generateCiiXml, so as decodeTiffPage, sr as MATHML_NAMESPACE, ss as optimizeImage, st as WoffInfo, su as PdfInkAnnotation, t as InitWasmOptions, ta as BarcodeReadResult, tc as buildOutputIntent, td as enforcePdfUa, tf as endPath, ti as BookmarkRef, tl as appendIncrementalUpdate, tn as levenshtein, to as resetWasmLoader, tr as SarifResult, ts as ImageOptimizeOptions, tt as summarizeBitDepth, tu as FileAttachmentIcon, u as RedactResult, ua as Pdf417Matrix, uc as PdfAValidationResult, ud as PDFOperator, uf as setFlatness, ui as flattenForm, ul as validateKeyUsage, un as PdfX6Options, uo as parseTiffIfd, ur as buildNamespace, us as JpegDecodeResult, ut as isWoff2, uu as LineEndingStyle, v as compareImages, va as calculateUpcCheckDigit, vc as linearizePdf, vd as endArtifact, vf as ChangeTracker, vi as ForeignPageError, vl as isCertificateRevoked, vn as buildSampledTransferFunction, vo as embedTiffDirect, vr as ExtractedTable, vs as RedactionResult, vt as WorkerPool, vu as PdfStrikeOutAnnotation, w as extractImages$1, wa as encodeEan13, wc as LtvOptions, wd as beginText, wi as PluginError, wl as requestTimestamp, wn as ExponentialFunction, wo as detectImageFormat, wr as accessibilityPlugin, ws as EnforcePdfAResult, wt as buildVtDpm, wu as PdfTextAnnotation, x as FontFileFormat, xa as calculateEanCheckDigit, xc as findChangedObjects, xd as drawImageWithMatrix, xf as saveIncremental, xi as InvalidPageSizeError, xl as TimestampResult, xn as buildType5Halftone, xo as webpToJpeg, xr as tableToCsv, xs as enforcePdfX, xt as PdfVtConformance, xu as PdfFreeTextAnnotation, y as comparePages, ya as encodeUpcA, yc as IncrementalChange, yd as endMarkedContent, yf as IncrementalSaveResult, yi as InvalidColorError, yl as checkCertificateStatus, yn as buildThresholdHalftone, yo as encodePngFromPixels, yr as TableExtractOptions, ys as applyRedaction, yt as WorkerPoolOptions, yu as PdfUnderlineAnnotation, z as DisplayList, za as BarcodeOptions, zc as ModificationReport, zd as showTextHex, zi as OverflowResult, zl as PrepareAppearanceOptions, zn as reconstructLines, zo as computeTargetDimensions, zr as isValidModuleName, zs as createAssociatedFile, zt as splitByScript, zu as sha256 } from "./index--7OpQy6B.cjs";
2
2
  import { $ as formatPdfDate, $n as translate, $t as applyRedactions, A as OutlineDestination, An as StructureType, Ar as setStrokingColor, At as QrCodeMatrix, B as EncryptOptions, Bn as Radians, Bt as RadialGradientOptions, C as VisibleSignatureOptions, Cn as annotationFromDict, Cr as setFillColorRgb, Ct as TableColumn, D as ViewerPreferences, Dn as PdfStructureElement, Dr as setStrokeColorGray, Dt as renderMultiPageTable, E as PdfViewerPreferences, En as AccessibilityIssue, Er as setStrokeColorCmyk, Et as TextRun, F as loadPdf, Fn as ParseSpeeds, Ft as GradientFill, G as CatalogOptions, Gn as radiansToDegrees, Gt as radialGradient, H as PdfPermissionFlags, Hn as degrees, Ht as buildGradientObjects, I as PdfSaveOptions, In as TextAlignment, It as LinearGradientOptions, J as PageEntry, Jn as rotationMatrix, Jt as EmbedPageOptions, K as DocumentMetadata, Kn as restoreState, Kt as tilingPattern, L as PdfWriter, Ln as TextRenderingMode, Lt as NormalizedStop, M as PdfOutlineItem, Mn as ImageAlignment, Mr as spotResourceName, Mt as encodeQrCode, N as PdfOutlineTree, Nn as LineCapStyle, Nt as qrCodeToOperators, O as buildViewerPreferencesDict, On as PdfStructureTree, Or as setStrokeColorRgb, Ot as renderTable, P as LoadPdfOptions, Pn as LineJoinStyle, Pt as ColorStop, Q as buildPageTree, Qn as skew, Qt as RedactionOptions, R as serializePdf, Rn as Angle, Rt as PatternFill, S as SignOptions, Sn as PdfAnnotation, Sr as setFillColorGray, St as TableCell, T as signPdf, Tn as createAnnotation, Tr as setStrokeColor, Tt as TableRow, U as decodePermissions, Un as degreesToRadians, Ut as buildPatternObjects, V as PdfEncryptionHandler, Vn as concatMatrix, Vt as TilingPatternOptions, W as encodePermissions, Wn as radians, Wt as linearGradient, X as buildDocumentStructure, Xn as scale, Xt as embedPageAsFormXObject, Y as buildCatalog, Yn as saveState, Yt as EmbeddedPdfPage, Z as buildInfoDict, Zn as setGraphicsState, Zt as RedactionMark, _ as EmbeddedFile, _n as parseSvgPath, _r as rgb, _t as CellContent, a as StandardFonts, an as endLayerContent, ar as SpotColor, at as DrawRectangleOptions, b as getAttachments, bn as AnnotationOptions, br as setFillColor, bt as NestedTableContent, c as PdfPluginManager, cn as svgToPdfOperators, cr as cmyk, ct as DrawTextOptions, d as SignatureVerificationResult, dn as SvgGradient, dr as colorToHex, dt as PageSize, en as getRedactionMarks, er as CmykColor, et as DrawCircleOptions, f as verifySignature, fn as SvgGradientStop, fr as componentsToColor, ft as PageSizes, g as addWatermarkToPage, gn as parseSvgColor, gr as hexToColor, gt as TransparencyGroupOptions, h as addWatermark, hn as parseSvg, hr as grayscale, ht as SoftMaskRef, i as StandardFontName, in as beginLayerContent, ir as RgbColor, it as DrawQrCodeOptions, j as OutlineItemOptions, jn as BlendMode, jr as spotColor, jt as QrCodeOptions, k as parseViewerPreferences, kn as StructureElementOptions, kr as setStrokeColorSpace, kt as ErrorCorrectionLevel, l as PluginDocument, ln as SvgDrawCommand, lr as cmykToRgb, lt as FontRef, m as WatermarkOptions, mn as interpolateLinearRgb, mr as deviceNResourceName, mt as SoftMaskBuilder, n as PdfDocument, nn as PdfLayer, nr as DeviceNColor, nt as DrawImageOptions, o as createPdf, on as SvgRenderOptions, or as applyFillColor, ot as DrawSquareOptions, p as verifySignatures, pn as applySpreadMethod, pr as deviceNColor, pt as PdfPage, q as DocumentStructure, qn as rotate, qt as DrawPageOptions, r as SetTitleOptions, rn as PdfLayerManager, rr as GrayscaleColor, rt as DrawLineOptions, s as PdfPlugin, sn as drawSvgOnPage, sr as applyStrokeColor, st as DrawSvgPathOptions, t as EmbedFontOptions, tn as markForRedaction, tr as Color, tt as DrawEllipseOptions, u as PluginPage, un as SvgElement, ur as colorToComponents, ut as ImageRef, v as attachFile, vn as parseSvgTransform, vr as rgbToCmyk, vt as DrawTableOptions, w as getSignatures, wn as buildAnnotationDict, wr as setFillingColor, wt as TableRenderResult, x as PdfSignatureInfo, xn as AnnotationType, xr as setFillColorCmyk, xt as PageContent, y as buildEmbeddedFilesNameTree, yn as AnnotationFlags, yr as setColorSpace, yt as MultiPageTableResult, z as EncryptAlgorithm, zn as Degrees, zt as RadialGradientFill } from "./pdfDocument-5Do0LKQh.cjs";
3
3
  import { C as PdfRef, E as RegistryEntry, S as PdfObjectRegistry, T as PdfString, _ as PdfDict, a as PdfListboxField, b as PdfNumber, c as PdfCheckboxField, d as FieldType, f as PdfField, g as PdfBool, h as PdfArray, i as PdfButtonField, l as PdfTextField, m as ByteWriter, n as RefResolver, o as PdfDropdownField, p as WidgetAnnotationHost, r as PdfSignatureField, s as PdfRadioGroup, t as PdfForm, u as FieldFlags, v as PdfName, w as PdfStream, x as PdfObject, y as PdfNull } from "./pdfForm-Ca86NDWn.cjs";
4
4
  import { A as movePage, B as asPdfName, C as copyPages, D as cropPage, E as CropBox, F as rotateAllPages, I as rotatePage, L as asNumber, M as removePages, N as resizePage, O as getPageSize, P as reversePages, R as asPDFName, S as PageRange, T as splitPdf, V as asPdfNumber, _ as LayoutSinglelineResult, a as FontEmbeddingResult, b as layoutMultilineText, c as SubsetCmap, d as extractMetrics, f as ComputeFontSizeOptions, g as LayoutSinglelineOptions, h as LayoutMultilineResult, i as FontDescriptorData, j as removePage, k as insertPage, l as SubsetResult, m as LayoutMultilineOptions, n as CIDSystemInfoData, o as Type0FontData, p as LayoutCombedOptions, r as EmbeddedFont, s as WidthEntry, t as CIDFontData, u as FontMetrics, v as computeFontSize, w as mergePdfs, x as layoutSinglelineText, y as layoutCombedText, z as asPDFNumber } from "./fontEmbed-DxtdZxUj.cjs";
5
5
  import { a as ListboxAppearanceOptions, c as TextAppearanceOptions, d as generateDropdownAppearance, f as generateListboxAppearance, h as generateTextAppearance, i as DropdownAppearanceOptions, l as generateButtonAppearance, m as generateSignatureAppearance, n as ButtonAppearanceOptions, o as RadioAppearanceOptions, p as generateRadioAppearance, r as CheckboxAppearanceOptions, s as SignatureAppearanceOptions, t as AppearanceProviderFor, u as generateCheckboxAppearance } from "./fieldAppearance-Df1262CT.cjs";
6
- import { _ as parseContentStream, a as ImageInfo, c as PdfParseError, d as TextExtractionOptions, f as TextItem, g as Operand, h as ContentStreamOperator, i as analyzeImages, l as formatHexContext, m as extractTextWithPositions, n as AnalyzeImagesOptions, o as decodeImageStream, p as extractText, r as ImageAnalysis, s as extractImages, t as AnalysisReport, u as decodeStream } from "./compressionAnalysis-CyBVhRU5.cjs";
6
+ import { _ as parseContentStream, a as ImageInfo, c as PdfParseError, d as TextExtractionOptions, f as TextItem$1, g as Operand, h as ContentStreamOperator, i as analyzeImages, l as formatHexContext, m as extractTextWithPositions, n as AnalyzeImagesOptions, o as decodeImageStream, p as extractText, r as ImageAnalysis, s as extractImages, t as AnalysisReport, u as decodeStream } from "./compressionAnalysis-CyBVhRU5.cjs";
7
7
 
8
8
  //#region src/browser/serviceWorker.d.ts
9
9
  /**
@@ -186,5 +186,5 @@ declare function saveAsDataUrl(bytes: Uint8Array): string;
186
186
  */
187
187
  declare function openInNewTab(bytes: Uint8Array, target?: string): Window | null;
188
188
  //#endregion
189
- export { AFDate_FormatEx, AFNumber_Format, type AFRelationship, AFSpecial_Format, type AccessibilityIssue, type AccessibilityPluginOptions, type AddBookmarkOptions, type AnalysisReport, type AnalyzeImagesOptions, type Angle, AnnotationFlags, type AnnotationOptions, type AnnotationType, type AppearanceProviderFor, type AppendOptions, type AssociatedFileOptions, type AssociatedFileResult, type BarcodeMatrix, type BarcodeOptions, type BarcodeOptions as EanOptions, type BarcodeOptions as UpcOptions, type BarcodeReadResult, type BatchErrorStrategy, type BatchOptimizeOptions, type BatchOptions, BatchProcessingError, type BatchProgressCallback, type BatchResult, BlendMode, type BookmarkNode, type BookmarkRef, type BoxGeometry, type ButtonAppearanceOptions, type ByteRangeResult, type ByteWriter, type CIDFontData, type CIDSystemInfoData, type CalGrayParams, type CalRGBParams, type CaretSymbol, type CatalogOptions, type CellContent, ChangeTracker, type CheckboxAppearanceOptions, type ChromaSubsampling, type CmykColor, type Code128Options, type Code39Options, type CodeFrameOptions, type CollectionOptions, type CollectionSchemaField, type CollectionView, type Color, type ColorStop, CombedTextLayoutError, type ComputeFontSizeOptions, type ContentStreamOperator, type CounterSignatureInfo, type CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, type DataMatrixOptions, type DataMatrixResult, type DeduplicationReport, type DeferredSignOptions, type DeferredSignResult, type Degrees, type DeviceNColor, type DiffEntry, type DirectEmbedOptions, type DirectEmbedResult, type DocTimeStampOptions, type DocumentDiff, type DocumentMetadata, type DocumentPart, type DocumentStructure, type DownscaleOptions, type DrawCircleOptions, type DrawEllipseOptions, type DrawImageOptions, type DrawLineOptions, type DrawPageOptions, type DrawQrCodeOptions, type DrawRectangleOptions, type DrawSquareOptions, type DrawSvgPathOptions, type DrawTableOptions, type DrawTextOptions, type DropdownAppearanceOptions, type DssData, EKU_OIDS, type EmbedFontOptions, type EmbedPageOptions, type EmbeddedFile, EmbeddedFont, type EmbeddedPdfPage, type EncryptAlgorithm, type EncryptDictValues, type EncryptOptions, EncryptedPdfError, type EnforcePdfAOptions, type EnforcePdfAResult, type EnforcementAction, type ErrorCorrectionLevel, ExceededMaxLengthError, type ExponentialFunction, type ExternalSigner, type ExtractedTable, type FacturXProfile, type FallbackFont, type FallbackRun, type FetchLike, type FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, type FieldLockInfo, type FieldLockOptions, type FieldType, type FileAttachmentIcon, type FlattenFormResult, type FlattenOptions, type FontDescriptorData, type FontEmbeddingResult, type FontMetrics, FontNotEmbeddedError, type FontRef, ForeignPageError, type FreeTextAlignment, type FunctionShadingOptions, type GradientFill, type GrayscaleColor, type HeaderFooterContent, type HeaderFooterOptions, type HeaderFooterPosition, type IccProfile, type IfdEntry, ImageAlignment, type ImageAnalysis, type ImageDpi, type ImageFormat, type ImageInfo, type ImageOptimizeEntry, type ImageOptimizeOptions, type ImageRef, type IncrementalChange, type IncrementalObject, type IncrementalSaveOptions, type IncrementalSaveResult, InitWasmOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, type Invoice, type InvoiceLine, type InvoiceParty, type ItfOptions, type JpegDecodeResult, type JpegMarkerInfo, type JpegMetadata, type JpegWasmModule, type JsonReport, type LabParams, type LayoutCombedOptions, type LayoutMultilineOptions, type LayoutMultilineResult, type LayoutSinglelineOptions, type LayoutSinglelineResult, LineCapStyle, type LineEndingStyle, LineJoinStyle, type LinearGradientOptions, type LinearizationInfo, type LinearizationOptions, type LinkHighlightMode, type ListboxAppearanceOptions, type LoadPdfOptions, type LtvOptions, MATHML_NAMESPACE, type MarkdownToPdfOptions, type MarkedContentScope, MdpPermission, type MetadataPluginOptions, MissingOnValueCheckError, type ModificationReport, type ModificationViolation, type ModificationViolationType, type MultiPageTableResult, type NamespaceDef, type NestedTableContent, NoSuchFieldError, type NormalizedStop, type Operand, type OptimizationReport, type OptimizeResult, type OrderXType, type OutlineDestination, type OutlineItemOptions, type OutputIntentOptions, type OverflowMode, type OverflowResult, type OverlayAlignment, PDF2_NAMESPACE, PDFOperator, type PageContent, type PageEntry, type PageLabelRange, type PageLabelStyle, type PageRange, type PageSize, PageSizes, ParseSpeeds, type ParsedPage, type ParsedXmpMetadata, type PatternFill, type Pdf417Matrix, type Pdf417Options, type PdfA4ExtensionProperty, type PdfA4ExtensionSchema, type PdfA4Level, type PdfA4Options, type PdfAIssue, type PdfALevel, type PdfAProfile, type PdfAValidationResult, type PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, type PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, type PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, type PdfPermissionFlags, type PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, type PdfRect, PdfRedactAnnotation, PdfRef, type PdfSaveOptions, PdfSignatureField, type PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, type PdfUaEnforcementResult, type PdfUaError, type PdfUaLevel, type PdfUaValidationResult, type PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, type PdfVtConformance, PdfWorker, type PdfWorkerOptions, PdfWriter, type PdfX6Options, type PdfX6Variant, type PluginDocument, PluginError, type PluginPage, type PostScriptFunction, type PrepareAppearanceOptions, type PresetName, type PresetOptions, type ProgressInfo, type QrCodeMatrix, type QrCodeOptions, type RadialGradientFill, type RadialGradientOptions, type Radians, type RadioAppearanceOptions, type RangeFetchOptions, type RangeFetcher, type RawImageData, type RecompressOptions, type ReconstructOptions, type RedactionMark, type RedactionOperatorOptions, type RedactionOptions, type RedactionResult, type RefResolver, type RegistryEntry, RemovePageFromEmptyDocumentError, type RequirementType, type RgbColor, RichTextFieldReadError, type RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, type SampledFunction, type SarifLog, type SarifResult, type SarifRun, type ScriptRun, type SetTitleOptions, type SignOptions, type SignatureAlgorithm, type SignatureAppearanceOptions, type SignatureByteRange, type SignatureChainEntry, type SignatureChainResult, type SignatureOptions, type SignatureVerificationResult, type SignerInfo, type SoftMaskBuilder, type SoftMaskRef, type SpotColor, type StandardFontName, StandardFonts, type StandardStampName, type StitchingFunction, StreamingParseError, type StreamingParseResult, type StreamingParserEvent, type StreamingParserOptions, StreamingPdfParser, type StripOptions, type StripResult, type StrippedFeature, type StructureElementOptions, type StructureType, type StyledBarcodeOptions, type SubsetCmap, type SubsetResult, type SvgDrawCommand, type SvgElement, type SvgGradient, type SvgGradientStop, type SvgRenderOptions, type TableCell, type TableColumn, type TableExtractOptions, type TablePreset, type TableRenderResult, type TableRow, type TaskRunner, TextAlignment, type TextAnnotationIcon, type TextAppearanceOptions, type TextExtractionOptions, type TextItem, type Line as TextLine, type Paragraph as TextParagraph, TextRenderingMode, type TextRun, type TiffCmykEmbedResult, type TiffDecodeOptions, type TiffIfdEntry, type TiffImage, type TilingPatternOptions, type TimestampPluginOptions, type TimestampResult, type TrailerInfo, type TransparencyFinding, type TransparencyGroupOptions, type TransparencyInfo, TrustStore, type Type0FontData, type Type1Halftone, UnexpectedFieldTypeError, type VNode, type ValidationFinding, type ValidationLevel, type RenderOptions as VdomRenderOptions, type ViewerPreferences, type VisibleSignatureOptions, type RecordMetadata as VtRecordMetadata, type WasmLoaderConfig, type WasmModuleName, type WatermarkOptions, type WebPImage, type WidgetAnnotationHost, type WidthEntry, type WoffInfo, type WorkerPool, type WorkerPoolOptions, type XRechnungOptions, type XmpIssue, type XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachFile, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildViewerPreferencesDict, buildVtDpm, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createPdfResponse, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawXObject, drawSvgOnPage, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractIccProfile, extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate as formatAcrobatDate, formatDate$1 as formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, handlePdfRequest, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, instantiateWasmModuleStreaming, interpolateLinearRgb, isAccessible, isCacheAvailable, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, openInNewTab, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata, parseXmpMetadata$1 as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, restoreState, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, saveState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderMultiPageTable, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveAsBlob, saveAsDataUrl, saveAsDownload, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLeading as setLineHeight, setLineCap as setLineCapOp, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
189
+ export { AFDate_FormatEx, AFNumber_Format, type AFRelationship, AFSpecial_Format, type AccessibilityIssue, type AccessibilityPluginOptions, type AddBookmarkOptions, type AnalysisReport, type AnalyzeImagesOptions, type Angle, AnnotationFlags, type AnnotationOptions, type AnnotationType, type AppearanceProviderFor, type AppendOptions, type ApplyOcrOptions, type AssociatedFileOptions, type AssociatedFileResult, type BarcodeMatrix, type BarcodeOptions, type BarcodeOptions as EanOptions, type BarcodeOptions as UpcOptions, type BarcodeReadResult, type BatchErrorStrategy, type BatchOptimizeOptions, type BatchOptions, BatchProcessingError, type BatchProgressCallback, type BatchResult, BlendMode, type BookmarkNode, type BookmarkRef, type BoxGeometry, type ButtonAppearanceOptions, type ByteRangeResult, type ByteWriter, type CIDFontData, type CIDSystemInfoData, type CalGrayParams, type CalRGBParams, type Canvas2DLike, type CanvasRenderOptions, type CaretSymbol, type CatalogOptions, type CellContent, ChangeTracker, type CheckboxAppearanceOptions, type ChromaSubsampling, type CmykColor, type Code128Options, type Code39Options, type CodeFrameOptions, type CollectionOptions, type CollectionSchemaField, type CollectionView, type Color, type ColorStop, CombedTextLayoutError, type CompareOptions, type ComputeFontSizeOptions, type ContentStreamOperator, type CounterSignatureInfo, type CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, type DataMatrixOptions, type DataMatrixResult, type DeduplicationReport, type DeferredSignOptions, type DeferredSignResult, type Degrees, type DeviceNColor, type DiffEntry, type DiffResult, type DirectEmbedOptions, type DirectEmbedResult, type DisplayItem, type DisplayList, type DocTimeStampOptions, type DocumentDiff, type DocumentMetadata, type DocumentPart, type DocumentStructure, type DownscaleOptions, type DrawCircleOptions, type DrawEllipseOptions, type DrawImageOptions, type DrawLineOptions, type DrawPageOptions, type DrawQrCodeOptions, type DrawRectangleOptions, type DrawSquareOptions, type DrawSvgPathOptions, type DrawTableOptions, type DrawTextOptions, type DropdownAppearanceOptions, type DssData, EKU_OIDS, type EmbedFontOptions, type EmbedPageOptions, type EmbeddedFile, EmbeddedFont, type EmbeddedPdfPage, type EncryptAlgorithm, type EncryptDictValues, type EncryptOptions, EncryptedPdfError, type EnforcePdfAOptions, type EnforcePdfAResult, type EnforcementAction, type ErrorCorrectionLevel, ExceededMaxLengthError, type ExponentialFunction, type ExternalSigner, type ExtractedFont, type ExtractedImage, type ExtractedTable, type FacturXProfile, type FallbackFont, type FallbackRun, type FetchLike, type FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, type FieldLockInfo, type FieldLockOptions, type FieldType, type FileAttachmentIcon, type FillItem, type FlattenFormResult, type FlattenOptions, type FontDescriptorData, type FontEmbeddingResult, type FontFileFormat, type FontMetrics, FontNotEmbeddedError, type FontRef, ForeignPageError, type FreeTextAlignment, type FunctionShadingOptions, type GradientFill, type GrayscaleColor, type HeaderFooterContent, type HeaderFooterOptions, type HeaderFooterPosition, type IccProfile, type IfdEntry, ImageAlignment, type ImageAnalysis, type ImageDpi, type ImageFormat, type ImageInfo, type ImageItem, type ImageOptimizeEntry, type ImageOptimizeOptions, type ImageRef, type IncrementalChange, type IncrementalObject, type IncrementalSaveOptions, type IncrementalSaveResult, InitWasmOptions, type InterpretOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, type Invoice, type InvoiceLine, type InvoiceParty, type ItfOptions, type JpegDecodeResult, type JpegMarkerInfo, type JpegMetadata, type JpegWasmModule, type JsonReport, type LabParams, type LayoutCombedOptions, type LayoutMultilineOptions, type LayoutMultilineResult, type LayoutSinglelineOptions, type LayoutSinglelineResult, LineCapStyle, type LineEndingStyle, LineJoinStyle, type LinearGradientOptions, type LinearizationInfo, type LinearizationOptions, type LinkHighlightMode, type ListboxAppearanceOptions, type LoadPdfOptions, type LtvOptions, MATHML_NAMESPACE, type MarkdownToPdfOptions, type MarkedContentScope, type Matrix, MdpPermission, type MetadataPluginOptions, MissingOnValueCheckError, type ModificationReport, type ModificationViolation, type ModificationViolationType, type MultiPageTableResult, type NamespaceDef, type NestedTableContent, NoSuchFieldError, type NormalizedStop, type OcrEngine, type OcrWord, type Operand, type OptimizationReport, type OptimizeResult, type OrderXType, type OutlineDestination, type OutlineItemOptions, type OutputIntentOptions, type OverflowMode, type OverflowResult, type OverlayAlignment, PDF2_NAMESPACE, PDFOperator, type PageContent, type PageEntry, type PageLabelRange, type PageLabelStyle, type PageRange, type PageSize, PageSizes, ParseSpeeds, type ParsedPage, type ParsedXmpMetadata, type PatternFill, type Pdf417Matrix, type Pdf417Options, type PdfA4ExtensionProperty, type PdfA4ExtensionSchema, type PdfA4Level, type PdfA4Options, type PdfAIssue, type PdfALevel, type PdfAProfile, type PdfAValidationResult, type PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, type PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, type PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, type PdfPermissionFlags, type PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, type PdfRect, PdfRedactAnnotation, PdfRef, type PdfSaveOptions, PdfSignatureField, type PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, type PdfUaEnforcementResult, type PdfUaError, type PdfUaLevel, type PdfUaValidationResult, type PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, type PdfVtConformance, PdfWorker, type PdfWorkerOptions, PdfWriter, type PdfX6Options, type PdfX6Variant, type PluginDocument, PluginError, type PluginPage, type PostScriptFunction, type PrepareAppearanceOptions, type PresetName, type PresetOptions, type ProgressInfo, type QrCodeMatrix, type QrCodeOptions, type RadialGradientFill, type RadialGradientOptions, type Radians, type RadioAppearanceOptions, type RangeFetchOptions, type RangeFetcher, type RasterImage, type RawImageData, type RecompressOptions, type ReconstructOptions, type RedactRect, type RedactResult, type RedactionMark, type RedactionOperatorOptions, type RedactionOptions, type RedactionResult, type RefResolver, type RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, type RenderOptions, type RequirementType, type RgbColor, type Rgba, RichTextFieldReadError, type RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, type SampledFunction, type SarifLog, type SarifResult, type SarifRun, type ScriptRun, type SetTitleOptions, type SignOptions, type SignatureAlgorithm, type SignatureAppearanceOptions, type SignatureByteRange, type SignatureChainEntry, type SignatureChainResult, type SignatureOptions, type SignatureVerificationResult, type SignerInfo, type SoftMaskBuilder, type SoftMaskRef, type SpotColor, type StandardFontName, StandardFonts, type StandardStampName, type StitchingFunction, StreamingParseError, type StreamingParseResult, type StreamingParserEvent, type StreamingParserOptions, StreamingPdfParser, type StripOptions, type StripResult, type StrippedFeature, type StrokeItem, type StructureElementOptions, type StructureType, type StyledBarcodeOptions, type SubPath, type SubsetCmap, type SubsetResult, type SvgDrawCommand, type SvgElement, type SvgGradient, type SvgGradientStop, type SvgRenderOptions, type TableCell, type TableColumn, type TableExtractOptions, type TablePreset, type TableRenderResult, type TableRow, type TaskRunner, TextAlignment, type TextAnnotationIcon, type TextAppearanceOptions, type TextItem as TextDisplayItem, type TextExtractionOptions, type TextItem$1 as TextItem, type Line as TextLine, type Paragraph as TextParagraph, TextRenderingMode, type TextRun, type ThumbnailOptions, type TiffCmykEmbedResult, type TiffDecodeOptions, type TiffIfdEntry, type TiffImage, type TileGrid, type TileOptions, type TilingPatternOptions, type TimestampPluginOptions, type TimestampResult, type TrailerInfo, type TransparencyFinding, type TransparencyGroupOptions, type TransparencyInfo, TrustStore, type Type0FontData, type Type1Halftone, UnexpectedFieldTypeError, type VNode, type ValidationFinding, type ValidationLevel, type RenderOptions$1 as VdomRenderOptions, type ViewerPreferences, type VisibleSignatureOptions, type RecordMetadata as VtRecordMetadata, type WasmLoaderConfig, type WasmModuleName, type WatermarkOptions, type WebPImage, type WidgetAnnotationHost, type WidthEntry, type WoffInfo, type WorkerPool, type WorkerPoolOptions, type XRechnungOptions, type XmpIssue, type XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOcr, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachFile, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildViewerPreferencesDict, buildVtDpm, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, compareImages, comparePages, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, computeTileGrid, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createPdfResponse, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawXObject, drawSvgOnPage, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractFonts, extractIccProfile, extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractImages$1 as extractPageImages, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate as formatAcrobatDate, formatDate$1 as formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateThumbnail, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, handlePdfRequest, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, instantiateWasmModuleStreaming, interpolateLinearRgb, interpretContentStream, interpretPage, isAccessible, isCacheAvailable, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, openInNewTab, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata, parseXmpMetadata$1 as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, restoreState, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, saveState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rasterize, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, redactRegions, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderDisplayListToCanvas, renderMultiPageTable, renderPageTile, renderPageToCanvas, renderPageToImage, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveAsBlob, saveAsDataUrl, saveAsDownload, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLeading as setLineHeight, setLineCap as setLineCapOp, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
190
190
  //# sourceMappingURL=browser.d.cts.map
@@ -1,9 +1,9 @@
1
- import { $ as generateOrderX, $a as extractIccProfile, $c as findSignatures, $i as PdfWorker, $l as aesDecryptCBC, $n as BatchOptions, $o as XmpValidationResult, $r as estimateTextWidth, $s as detectModifications, $t as DocTimeStampOptions, $u as buildDeviceNColorSpace, A as WorkerPoolOptions, Aa as encodePngFromPixels, Ac as checkCertificateStatus, Ad as IncrementalSaveResult, Ai as encodeUpcA, Al as PdfUnderlineAnnotation, An as TableExtractOptions, Ao as applyRedaction, Ar as InvalidColorError, As as IncrementalChange, At as buildThresholdHalftone, Au as endMarkedContent, B as renderToPdf, Ba as convertTiffCmykToRgb, Bc as encodeInteger, Bi as Code39Options, Bl as AFNumber_Format, Bn as ParsedPage, Bo as generatePdfAXmpBytes, Br as HeaderFooterContent, Bs as addCounterSignature, Bt as evaluateFunction, Bu as setCharacterSpacing, C as DeferredSignOptions, Ca as decodeWebP, Cc as extractEmbeddedRevocationData, Cd as setLineJoin, Ci as encodePdf417, Cl as PdfLineAnnotation, Cn as buildPieceInfo, Co as decodeJpegWasm, Cr as CombedTextLayoutError, Cs as validatePdfA, Ct as buildBoxDict, Cu as beginArtifact, D as signDeferred, Da as DirectEmbedResult, Dc as downloadCrl, Dd as isOpenTypeCFF, Di as dataMatrixToOperators, Dl as PdfHighlightAnnotation, Dn as DocumentPart, Do as OverlayAlignment, Dr as FieldExistsAsNonTerminalError, Ds as getLinearizationInfo, Dt as STANDARD_SPOT_FUNCTIONS, Du as beginMarkedContentWithProperties, E as SignatureAlgorithm, Ea as DirectEmbedOptions, Ec as validateCertificateChain, Ed as stroke, Ei as DataMatrixResult, El as PdfSquareAnnotation, En as buildRequirements, Eo as isJpegWasmReady, Er as FieldAlreadyExistsError, Es as delinearizePdf, Et as validateBoxGeometry, Eu as beginMarkedContentSequence, F as buildVtDpm, Fa as detectImageFormat, Fc as requestTimestamp, Fi as encodeEan13, Fl as PdfTextAnnotation, Fn as accessibilityPlugin, Fo as EnforcePdfAResult, Fr as PluginError, Fs as LtvOptions, Ft as ExponentialFunction, Fu as beginText, G as createRangeFetcher, Ga as injectJpegMetadata, Gc as encodeSequence, Gi as code128ToOperators, Gl as setFieldValue, Gn as PdfDocumentBuilder, Go as stripProhibitedFeatures, Gr as formatDate$1, Gs as FieldLockInfo, Gt as CollectionView, Gu as setTextRenderingMode, H as FetchLikeResponse, Ha as isCmykTiff, Hc as encodeOID, Hi as computeCode39CheckDigit, Hl as createSandbox, Hn as StreamingParserEvent, Ho as StripResult, Hr as HeaderFooterPosition, Hs as DiffEntry, Ht as markdownToPdf, Hu as setFontSize, I as gtsPdfVtVersion, Ia as getImageFormatName, Ic as SignatureOptions, Ii as encodeEan8, Il as TextAnnotationIcon, In as MetadataPluginOptions, Io as EnforcementAction, Ir as RemovePageFromEmptyDocumentError, Is as buildDssDictionary, It as PdfFunctionDef, Iu as endText, J as ScriptRun, Ja as ImageDpi, Jc as encodeUtf8String, Ji as valuesToModules, Jl as AFSpecial_Format, Jn as getInlineWasmSize, Jo as AssociatedFileResult, Jr as toRoman, Js as buildFieldLockDict, Jt as Paragraph, Ju as showText, K as FallbackFont, Ka as JpegMarkerInfo, Kc as encodeSet, Ki as encodeCode128, Kl as addVisibilityAction, Kn as WasmModuleName, Ko as AFRelationship, Kr as replaceTemplateVariables, Ks as FieldLockOptions, Kt as buildCollection, Ku as setTextRise, L as RenderOptions, La as getSupportedFormats, Lc as SignerInfo, Li as ItfOptions, Ll as AFDate_FormatEx, Ln as metadataPlugin, Lo as enforcePdfAFull, Lr as RichTextFieldReadError, Ls as embedLtvData, Lt as PostScriptFunction, Lu as moveText, M as PdfVtConformance, Ma as webpToJpeg, Mc as TimestampResult, Md as saveIncremental, Mi as calculateEanCheckDigit, Ml as PdfFreeTextAnnotation, Mn as tableToCsv, Mo as enforcePdfX, Mr as InvalidPageSizeError, Ms as findChangedObjects, Mt as buildType5Halftone, Mu as drawImageWithMatrix, N as RecordMetadata, Na as webpToPng, Nc as buildTimestampRequest, Ni as ean13ToOperators, Nl as LinkHighlightMode, Nn as tableToJson, No as validatePdfX, Nr as MissingOnValueCheckError, Ns as optimizeIncrementalSave, Nt as identityTransferFunction, Nu as drawImageXObject, O as TaskRunner, Oa as canDirectEmbed, Oc as extractCrlUrls, Od as isTrueType, Oi as encodeDataMatrix, Ol as PdfSquigglyAnnotation, On as buildDPartRoot, Oo as RedactionOperatorOptions, Or as FontNotEmbeddedError, Os as isLinearized, Ot as Type1Halftone, Ou as createMarkedContentScope, P as buildPdfVtDParts, Pa as ImageFormat, Pc as parseTimestampResponse, Pi as ean8ToOperators, Pl as PdfLinkAnnotation, Pn as AccessibilityPluginOptions, Po as EnforcePdfAOptions, Pr as NoSuchFieldError, Ps as DssData, Pt as nameHalftone, Pu as drawXObject, Q as XRechnungOptions, Qa as embedIccProfile, Qc as embedSignature, Qi as base64Encode, Ql as sha512, Qn as BatchErrorStrategy, Qo as XmpIssue, Qr as ellipsisText, Qs as ModificationViolationType, Qt as DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, Qu as showTextWithSpacing, R as VNode, Ra as TiffCmykEmbedResult, Rc as buildPkcs7Signature, Ri as encodeItf, Rl as formatDate, Rn as TimestampPluginOptions, Ro as PdfAXmpOptions, Rr as StreamingParseError, Rs as hasLtvData, Rt as SampledFunction, Ru as moveTextSetLeading, S as readWoffHeader, Sa as WebPImage, Sc as TrustStore, Sd as setLineCap, Si as Pdf417Options, Sl as PdfCircleAnnotation, Sn as buildNamespacesArray, So as JpegWasmModule, Sr as BatchProcessingError, Ss as enforcePdfA, St as PdfX6Variant, Su as MarkedContentScope, T as ExternalSigner, Ta as isWebPLossless, Tc as buildCertificateChain, Td as setMiterLimit, Ti as DataMatrixOptions, Tl as PdfPolygonAnnotation, Tn as buildRequirement, To as initJpegWasm, Tr as ExceededMaxLengthError, Ts as LinearizationOptions, Tt as buildPdfX6OutputIntent, Tu as beginMarkedContent, U as RangeFetchOptions, Ua as JpegMetadata, Uc as encodeOctetString, Ui as encodeCode39, Ul as getFieldValue, Un as StreamingParserOptions, Uo as StrippedFeature, Ur as applyHeaderFooter, Us as DocumentDiff, Ut as CollectionOptions, Uu as setLeading, V as FetchLike, Va as embedTiffCmyk, Vc as encodeLength, Vi as code39ToOperators, Vl as formatNumber, Vn as StreamingParseResult, Vo as StripOptions, Vr as HeaderFooterOptions, Vs as getCounterSignatures, Vt as MarkdownToPdfOptions, Vu as setFont, W as RangeFetcher, Wa as extractJpegMetadata, Wc as encodePrintableString, Wi as Code128Options, Wl as resolveFieldReference, Wn as StreamingPdfParser, Wo as countOccurrences, Wr as applyHeaderFooterToPage, Ws as diffSignedContent, Wt as CollectionSchemaField, Wu as setTextMatrix, X as splitByScript, Xa as computeTargetDimensions, Xc as PrepareAppearanceOptions, Xi as BarcodeOptions, Xl as sha256, Xn as isValidModuleName, Xo as createAssociatedFile, Xr as OverflowResult, Xs as ModificationReport, Xt as reconstructLines, Xu as showTextHex, Y as resolveFallback, Ya as computeImageDpi, Yc as ByteRangeResult, Yi as BarcodeMatrix, Yl as validateFieldValue, Yn as hasInlineWasmData, Yo as buildAfArray, Yr as OverflowMode, Ys as getFieldLocks, Yt as ReconstructOptions, Yu as showTextArray, Z as OrderXType, Za as IccProfile, Zc as computeSignatureHash, Zi as base64Decode, Zl as sha384, Zn as preloadInlineWasm, Zo as ParsedXmpMetadata, Zr as applyOverflow, Zs as ModificationViolation, Zt as reconstructParagraphs, Zu as showTextNextLine, _ as parseTileInfo, _a as decodeTiffAll, _c as verifySignatureDetailed, _d as lineTo, _i as readEan8, _l as PdfRedactAnnotation, _n as toSarif, _o as estimateJpegQuality, _r as FlattenFormResult, _s as detectTransparency, _t as InvoiceParty, _u as buildXmpMetadata, a as layoutColumns, aa as detectRuntime, ac as SignatureChainResult, ad as closeFillAndStroke, ai as TablePreset, al as generateHighlightAppearance, an as buildCalRGB, ao as deduplicateImages, ar as PageLabelRange, as as getSupportedLevels, at as buildPdfA4Xmp, au as verifyOwnerPassword, b as isWoff, ba as isTiff, bc as validateExtendedKeyUsage, bd as setDashPattern, bi as renderStyledBarcode, bl as StandardStampName, bn as PDF2_NAMESPACE, bo as ChromaSubsampling, br as flattenFields, bs as PdfALevel, bt as PdfRect, bu as PdfStreamWriter, c as downscale16To8, ca as isWasmModuleCached, cc as IncrementalObject, cd as curveTo, ci as borderedPreset, cl as generateSquareAppearance, cn as DEFAULT_SARIF_TOOL_NAME, co as OptimizationReport, cr as removePageLabels, cs as generateWinAnsiToUnicodeCmap, ct as buildFunctionShading, cu as PdfUaError, d as offsetSignedToUnsigned, da as provideWasmBytes, dc as TrailerInfo, dd as ellipsePath, di as stripedPreset, dl as generateUnderlineAppearance, dn as SarifLog, do as DownscaleOptions, dr as BookmarkNode, ds as OutputIntentOptions, dt as didYouMean, du as PdfUaWarning, ea as PdfWorkerOptions, ec as MdpPermission, ed as buildSeparationColorSpace, ei as shrinkFontSize, el as prepareForSigning, en as buildDocTimeStampDict, eo as parseIccColorSpace, er as BatchProgressCallback, es as extractXmpMetadata, et as generateXRechnungCii, eu as aesEncryptCBC, f as summarizeBitDepth, fa as resetWasmLoader, fc as appendIncrementalUpdate, fd as endPath, fi as BarcodeReadResult, fl as FileAttachmentIcon, fn as SarifResult, fo as ImageOptimizeOptions, fr as BookmarkRef, fs as buildOutputIntent, ft as levenshtein, fu as enforcePdfUa, g as decodeTileRegion, ga as decodeTiff, gc as validateByteRangeIntegrity, gd as fillEvenOddAndStroke, gi as readEan13, gl as PdfPopupAnnotation, gn as toJsonReport, go as downscaleImage, gr as removeBookmark, gs as TransparencyInfo, gt as InvoiceLine, gu as summarizeIssues, h as decodeTile, ha as TiffImage, hc as saveIncrementalWithSignaturePreservation, hd as fillEvenOdd, hi as readCode39, hl as PdfCaretAnnotation, hn as ValidationLevel, ho as RecompressOptions, hr as removeAllBookmarks, hs as TransparencyFinding, ht as Invoice, hu as isAccessible, i as findHyphenationPoints, ia as configureWasmLoader, ic as SignatureChainEntry, id as closeAndStroke, ii as PresetOptions, il as generateFreeTextAppearance, in as buildCalGray, io as DeduplicationReport, ir as processBatch, is as getProfile, it as PdfA4Options, iu as computeFileEncryptionKey, j as createWorkerPool, ja as recompressWebP, jc as extractOcspUrl, jd as saveDocumentIncremental, ji as upcAToOperators, jl as FreeTextAlignment, jn as extractTables, jo as buildPdfXOutputIntent, jr as InvalidFieldNamePartError, js as computeObjectHash, jt as buildType1Halftone, ju as wrapInMarkedContent, k as WorkerPool, ka as embedTiffDirect, kc as isCertificateRevoked, kd as ChangeTracker, ki as calculateUpcCheckDigit, kl as PdfStrikeOutAnnotation, kn as ExtractedTable, ko as RedactionResult, kr as ForeignPageError, ks as linearizePdf, kt as buildSampledTransferFunction, ku as endArtifact, l as getComponentDepths, la as loadWasmModule, lc as IncrementalSaveOptions, ld as curveToFinal, li as minimalPreset, ll as generateSquigglyAppearance, ln as JsonReport, lo as ProgressInfo, lr as setPageLabels, ls as generateZapfDingbatsToUnicodeCmap, lt as sampleShadingColor, lu as PdfUaLevel, m as assembleTiles, ma as TiffDecodeOptions, mc as parseExistingTrailer, md as fillAndStroke, mi as readCode128, ml as CaretSymbol, mn as ValidationFinding, mo as RawImageData, mr as getBookmarks, ms as generateSrgbIccProfile, mt as FacturXProfile, mu as checkAccessibility, n as index_d_exports, na as WasmLoaderConfig, nc as getCertificationLevel, nd as clip, ni as wrapText, nl as searchTextItems, nn as CalRGBParams, no as convertToGrayscale, nr as batchFlatten, ns as validateXmpMetadata, nt as PdfA4ExtensionSchema, nu as md5, o as layoutParagraph, oa as instantiateWasmModuleStreaming, oc as validateSignatureChain, od as closeFillEvenOddAndStroke, oi as applyPreset, ol as generateInkAppearance, on as buildLab, oo as BatchOptimizeOptions, or as PageLabelStyle, os as isValidLevel, ot as pdfA4Rules, ou as verifyUserPassword, p as upscale8To16, pa as IfdEntry, pc as findExistingSignatures, pd as fill, pi as readBarcode, pl as PdfFileAttachmentAnnotation, pn as SarifRun, po as OptimizeResult, pr as addBookmark, ps as SRGB_ICC_PROFILE, pt as renderCodeFrame, pu as validatePdfUa, q as FallbackRun, qa as analyzeJpegMarkers, qc as encodeUTCTime, qi as encodeCode128Values, ql as setFieldVisibility, qn as getInlineWasmBytes, qo as AssociatedFileOptions, qr as toAlpha, qs as addFieldLock, qt as Line, qu as setWordSpacing, r as initWasm, ra as clearWasmCache, rc as setCertificationLevel, rd as clipEvenOdd, ri as PresetName, rl as generateCircleAppearance, rn as LabParams, ro as isGrayscaleImage, rr as batchMerge, rs as PdfAProfile, rt as PdfA4Level, ru as EncryptDictValues, s as layoutTextFlow, sa as isWasmDisabled, sc as AppendOptions, sd as closePath, si as applyTablePreset, sl as generateLineAppearance, sn as labToRgb, so as ImageOptimizeEntry, sr as getPageLabels, ss as generateSymbolToUnicodeCmap, st as FunctionShadingOptions, su as PdfUaEnforcementResult, t as InitWasmOptions, ta as RuntimeKind, tc as buildDocMdpReference, td as circlePath, ti as truncateText, tl as decodeJpeg2000, tn as CalGrayParams, to as parseIccDescription, tr as BatchResult, ts as parseXmpMetadata$1, tt as PdfA4ExtensionProperty, tu as rc4, u as normalizeComponentDepth, ua as loadWasmModuleStreaming, uc as SignatureByteRange, ud as curveToInitial, ui as professionalPreset, ul as generateStrikeOutAppearance, un as SARIF_SCHEMA_URI, uo as optimizeAllImages, ur as AddBookmarkOptions, us as getToUnicodeCmap, ut as CodeFrameOptions, uu as PdfUaValidationResult, v as WoffInfo, va as decodeTiffPage, vc as EKU_OIDS, vd as moveTo, vi as StyledBarcodeOptions, vl as PdfInkAnnotation, vn as MATHML_NAMESPACE, vo as optimizeImage, vr as FlattenOptions, vs as flattenTransparency, vt as generateCiiXml, vu as createXmpStream, w as DeferredSignResult, wa as isWebP, wc as verifyOfflineRevocation, wd as setLineWidth, wi as pdf417ToOperators, wl as PdfPolyLineAnnotation, wn as RequirementType, wo as encodeJpegWasm, wr as EncryptedPdfError, ws as LinearizationInfo, wt as buildGtsPdfxVersion, wu as beginArtifactWithType, x as isWoff2, xa as parseTiffIfd, xc as validateKeyUsage, xd as setFlatness, xi as Pdf417Matrix, xl as LineEndingStyle, xn as buildNamespace, xo as JpegDecodeResult, xr as flattenForm, xs as PdfAValidationResult, xt as PdfX6Options, xu as PDFOperator, y as decodeWoff, ya as getTiffPageCount, yc as validateCertificatePolicy, yd as rectangle, yi as calculateBarcodeDimensions, yl as PdfStampAnnotation, yn as NamespaceDef, yo as recompressImage, yr as flattenField, ys as PdfAIssue, yt as BoxGeometry, yu as parseXmpMetadata, z as h, za as TiffIfdEntry, zc as encodeContextTag, zi as itfToOperators, zl as parseAcrobatDate, zn as timestampPlugin, zo as generatePdfAXmp, zr as UnexpectedFieldTypeError, zs as CounterSignatureInfo, zt as StitchingFunction, zu as nextLine } from "./index-5Fv1-Z-p.mjs";
1
+ import { $ as normalizeComponentDepth, $a as loadWasmModuleStreaming, $c as SignatureByteRange, $d as curveToInitial, $i as professionalPreset, $l as generateStrikeOutAppearance, $n as SARIF_SCHEMA_URI, $o as optimizeAllImages, $r as AddBookmarkOptions, $s as getToUnicodeCmap, $t as CodeFrameOptions, $u as PdfUaValidationResult, A as renderPageToCanvas, Aa as code39ToOperators, Ac as getCounterSignatures, Ad as setFont, Ai as HeaderFooterOptions, Al as encodeLength, An as MarkdownToPdfOptions, Ao as embedTiffCmyk, Ar as StreamingParseResult, As as StripOptions, At as FetchLike, Au as formatNumber, B as FillItem, Ba as base64Decode, Bc as ModificationViolation, Bd as showTextNextLine, Bi as applyOverflow, Bl as computeSignatureHash, Bn as reconstructParagraphs, Bo as IccProfile, Br as preloadInlineWasm, Bs as ParsedXmpMetadata, Bt as OrderXType, Bu as sha384, C as ExtractedImage, Ca as ean8ToOperators, Cc as DssData, Cd as drawXObject, Ci as NoSuchFieldError, Cl as parseTimestampResponse, Cn as nameHalftone, Co as ImageFormat, Cr as AccessibilityPluginOptions, Cs as EnforcePdfAOptions, Ct as buildPdfVtDParts, Cu as PdfLinkAnnotation, D as Canvas2DLike, Da as encodeItf, Dc as hasLtvData, Dd as moveTextSetLeading, Di as StreamingParseError, Dl as buildPkcs7Signature, Dn as SampledFunction, Do as TiffCmykEmbedResult, Dr as TimestampPluginOptions, Ds as PdfAXmpOptions, Dt as VNode, Du as formatDate, E as generateThumbnail, Ea as ItfOptions, Ec as embedLtvData, Ed as moveText, Ei as RichTextFieldReadError, El as SignerInfo, En as PostScriptFunction, Eo as getSupportedFormats, Er as metadataPlugin, Es as enforcePdfAFull, Et as RenderOptions$1, Eu as AFDate_FormatEx, F as InterpretOptions, Fa as encodeCode128, Fc as FieldLockOptions, Fd as setTextRise, Fi as replaceTemplateVariables, Fl as encodeSet, Fn as buildCollection, Fo as JpegMarkerInfo, Fr as WasmModuleName, Fs as AFRelationship, Ft as FallbackFont, Fu as addVisibilityAction, G as TextItem, Ga as WasmLoaderConfig, Gc as getCertificationLevel, Gd as clip, Gi as wrapText, Gl as searchTextItems, Gn as CalRGBParams, Go as convertToGrayscale, Gr as batchFlatten, Gs as validateXmpMetadata, Gt as PdfA4ExtensionSchema, Gu as md5, H as Rgba, Ha as PdfWorker, Hc as detectModifications, Hd as buildDeviceNColorSpace, Hi as estimateTextWidth, Hl as findSignatures, Hn as DocTimeStampOptions, Ho as extractIccProfile, Hr as BatchOptions, Hs as XmpValidationResult, Ht as generateOrderX, Hu as aesDecryptCBC, I as interpretContentStream, Ia as encodeCode128Values, Ic as addFieldLock, Id as setWordSpacing, Ii as toAlpha, Il as encodeUTCTime, In as Line, Io as analyzeJpegMarkers, Ir as getInlineWasmBytes, Is as AssociatedFileOptions, It as FallbackRun, Iu as setFieldVisibility, J as layoutColumns, Ja as detectRuntime, Jc as SignatureChainResult, Jd as closeFillAndStroke, Ji as TablePreset, Jl as generateHighlightAppearance, Jn as buildCalRGB, Jo as deduplicateImages, Jr as PageLabelRange, Js as getSupportedLevels, Jt as buildPdfA4Xmp, Ju as verifyOwnerPassword, K as Matrix, Ka as clearWasmCache, Kc as setCertificationLevel, Kd as clipEvenOdd, Ki as PresetName, Kl as generateCircleAppearance, Kn as LabParams, Ko as isGrayscaleImage, Kr as batchMerge, Ks as PdfAProfile, Kt as PdfA4Level, Ku as EncryptDictValues, L as interpretPage, La as valuesToModules, Lc as buildFieldLockDict, Ld as showText, Li as toRoman, Ll as encodeUtf8String, Ln as Paragraph, Lo as ImageDpi, Lr as getInlineWasmSize, Ls as AssociatedFileResult, Lt as ScriptRun, Lu as AFSpecial_Format, M as RenderOptions, Ma as encodeCode39, Mc as DocumentDiff, Md as setLeading, Mi as applyHeaderFooter, Ml as encodeOctetString, Mn as CollectionOptions, Mo as JpegMetadata, Mr as StreamingParserOptions, Ms as StrippedFeature, Mt as RangeFetchOptions, Mu as getFieldValue, N as rasterize, Na as Code128Options, Nc as diffSignedContent, Nd as setTextMatrix, Ni as applyHeaderFooterToPage, Nl as encodePrintableString, Nn as CollectionSchemaField, No as extractJpegMetadata, Nr as StreamingPdfParser, Ns as countOccurrences, Nt as RangeFetcher, Nu as resolveFieldReference, O as CanvasRenderOptions, Oa as itfToOperators, Oc as CounterSignatureInfo, Od as nextLine, Oi as UnexpectedFieldTypeError, Ol as encodeContextTag, On as StitchingFunction, Oo as TiffIfdEntry, Or as timestampPlugin, Os as generatePdfAXmp, Ot as h, Ou as parseAcrobatDate, P as renderPageToImage, Pa as code128ToOperators, Pc as FieldLockInfo, Pd as setTextRenderingMode, Pi as formatDate$1, Pl as encodeSequence, Pn as CollectionView, Po as injectJpegMetadata, Pr as PdfDocumentBuilder, Ps as stripProhibitedFeatures, Pt as createRangeFetcher, Pu as setFieldValue, Q as getComponentDepths, Qa as loadWasmModule, Qc as IncrementalSaveOptions, Qd as curveToFinal, Qi as minimalPreset, Ql as generateSquigglyAppearance, Qn as JsonReport, Qo as ProgressInfo, Qr as setPageLabels, Qs as generateZapfDingbatsToUnicodeCmap, Qt as sampleShadingColor, Qu as PdfUaLevel, R as DisplayItem, Ra as BarcodeMatrix, Rc as getFieldLocks, Rd as showTextArray, Ri as OverflowMode, Rl as ByteRangeResult, Rn as ReconstructOptions, Ro as computeImageDpi, Rr as hasInlineWasmData, Rs as buildAfArray, Rt as resolveFallback, Ru as validateFieldValue, S as extractFonts, Sa as ean13ToOperators, Sc as optimizeIncrementalSave, Sd as drawImageXObject, Si as MissingOnValueCheckError, Sl as buildTimestampRequest, Sn as identityTransferFunction, So as webpToPng, Sr as tableToJson, Ss as validatePdfX, St as RecordMetadata, Su as LinkHighlightMode, T as ThumbnailOptions, Ta as encodeEan8, Tc as buildDssDictionary, Td as endText, Ti as RemovePageFromEmptyDocumentError, Tl as SignatureOptions, Tn as PdfFunctionDef, To as getImageFormatName, Tr as MetadataPluginOptions, Ts as EnforcementAction, Tt as gtsPdfVtVersion, Tu as TextAnnotationIcon, U as StrokeItem, Ua as PdfWorkerOptions, Uc as MdpPermission, Ud as buildSeparationColorSpace, Ui as shrinkFontSize, Ul as prepareForSigning, Un as buildDocTimeStampDict, Uo as parseIccColorSpace, Ur as BatchProgressCallback, Us as extractXmpMetadata, Ut as generateXRechnungCii, Uu as aesEncryptCBC, V as ImageItem, Va as base64Encode, Vc as ModificationViolationType, Vd as showTextWithSpacing, Vi as ellipsisText, Vl as embedSignature, Vn as DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, Vo as embedIccProfile, Vr as BatchErrorStrategy, Vs as XmpIssue, Vt as XRechnungOptions, Vu as sha512, W as SubPath, Wa as RuntimeKind, Wc as buildDocMdpReference, Wd as circlePath, Wi as truncateText, Wl as decodeJpeg2000, Wn as CalGrayParams, Wo as parseIccDescription, Wr as BatchResult, Ws as parseXmpMetadata$1, Wt as PdfA4ExtensionProperty, Wu as rc4, X as layoutTextFlow, Xa as isWasmDisabled, Xc as AppendOptions, Xd as closePath, Xi as applyTablePreset, Xl as generateLineAppearance, Xn as labToRgb, Xo as ImageOptimizeEntry, Xr as getPageLabels, Xs as generateSymbolToUnicodeCmap, Xt as FunctionShadingOptions, Xu as PdfUaEnforcementResult, Y as layoutParagraph, Ya as instantiateWasmModuleStreaming, Yc as validateSignatureChain, Yd as closeFillEvenOddAndStroke, Yi as applyPreset, Yl as generateInkAppearance, Yn as buildLab, Yo as BatchOptimizeOptions, Yr as PageLabelStyle, Ys as isValidLevel, Yt as pdfA4Rules, Yu as verifyUserPassword, Z as downscale16To8, Za as isWasmModuleCached, Zc as IncrementalObject, Zd as curveTo, Zi as borderedPreset, Zl as generateSquareAppearance, Zn as DEFAULT_SARIF_TOOL_NAME, Zo as OptimizationReport, Zr as removePageLabels, Zs as generateWinAnsiToUnicodeCmap, Zt as buildFunctionShading, Zu as PdfUaError, _ as DiffResult, _a as encodeDataMatrix, _c as isLinearized, _d as createMarkedContentScope, _f as isTrueType, _i as FontNotEmbeddedError, _l as extractCrlUrls, _n as Type1Halftone, _o as canDirectEmbed, _r as buildDPartRoot, _s as RedactionOperatorOptions, _t as TaskRunner, _u as PdfSquigglyAnnotation, a as TileGrid, aa as readEan13, ac as TransparencyInfo, ad as summarizeIssues, af as fillEvenOddAndStroke, ai as removeBookmark, al as validateByteRangeIntegrity, an as InvoiceLine, ao as decodeTiff, ar as toJsonReport, as as downscaleImage, at as decodeTileRegion, au as PdfPopupAnnotation, b as ExtractedFont, ba as upcAToOperators, bc as computeObjectHash, bd as wrapInMarkedContent, bf as saveDocumentIncremental, bi as InvalidFieldNamePartError, bl as extractOcspUrl, bn as buildType1Halftone, bo as recompressWebP, br as extractTables, bs as buildPdfXOutputIntent, bt as createWorkerPool, bu as FreeTextAlignment, c as renderPageTile, ca as calculateBarcodeDimensions, cc as PdfAIssue, cd as parseXmpMetadata, cf as rectangle, ci as flattenField, cl as validateCertificatePolicy, cn as BoxGeometry, co as getTiffPageCount, cr as NamespaceDef, cs as recompressImage, ct as decodeWoff, cu as PdfStampAnnotation, d as redactRegions, da as Pdf417Options, dc as enforcePdfA, dd as MarkedContentScope, df as setLineCap, di as BatchProcessingError, dl as TrustStore, dn as PdfX6Variant, do as WebPImage, dr as buildNamespacesArray, ds as JpegWasmModule, dt as readWoffHeader, du as PdfCircleAnnotation, ea as stripedPreset, ec as OutputIntentOptions, ed as PdfUaWarning, ef as ellipsePath, ei as BookmarkNode, el as TrailerInfo, en as didYouMean, eo as provideWasmBytes, er as SarifLog, es as DownscaleOptions, et as offsetSignedToUnsigned, eu as generateUnderlineAppearance, f as ApplyOcrOptions, fa as encodePdf417, fc as validatePdfA, fd as beginArtifact, ff as setLineJoin, fi as CombedTextLayoutError, fl as extractEmbeddedRevocationData, fn as buildBoxDict, fo as decodeWebP, fr as buildPieceInfo, fs as decodeJpegWasm, ft as DeferredSignOptions, fu as PdfLineAnnotation, g as CompareOptions, ga as dataMatrixToOperators, gc as getLinearizationInfo, gd as beginMarkedContentWithProperties, gf as isOpenTypeCFF, gi as FieldExistsAsNonTerminalError, gl as downloadCrl, gn as STANDARD_SPOT_FUNCTIONS, go as DirectEmbedResult, gr as DocumentPart, gs as OverlayAlignment, gt as signDeferred, gu as PdfHighlightAnnotation, h as applyOcr, ha as DataMatrixResult, hc as delinearizePdf, hd as beginMarkedContentSequence, hf as stroke, hi as FieldAlreadyExistsError, hl as validateCertificateChain, hn as validateBoxGeometry, ho as DirectEmbedOptions, hr as buildRequirements, hs as isJpegWasmReady, ht as SignatureAlgorithm, hu as PdfSquareAnnotation, i as RenderCache, ia as readCode39, ic as TransparencyFinding, id as isAccessible, if as fillEvenOdd, ii as removeAllBookmarks, il as saveIncrementalWithSignaturePreservation, in as Invoice, io as TiffImage, ir as ValidationLevel, is as RecompressOptions, it as decodeTile, iu as PdfCaretAnnotation, j as RasterImage, ja as computeCode39CheckDigit, jc as DiffEntry, jd as setFontSize, ji as HeaderFooterPosition, jl as encodeOID, jn as markdownToPdf, jo as isCmykTiff, jr as StreamingParserEvent, js as StripResult, jt as FetchLikeResponse, ju as createSandbox, k as renderDisplayListToCanvas, ka as Code39Options, kc as addCounterSignature, kd as setCharacterSpacing, ki as HeaderFooterContent, kl as encodeInteger, kn as evaluateFunction, ko as convertTiffCmykToRgb, kr as ParsedPage, ks as generatePdfAXmpBytes, kt as renderToPdf, ku as AFNumber_Format, l as RedactRect, la as renderStyledBarcode, lc as PdfALevel, ld as PdfStreamWriter, lf as setDashPattern, li as flattenFields, ll as validateExtendedKeyUsage, ln as PdfRect, lo as isTiff, lr as PDF2_NAMESPACE, ls as ChromaSubsampling, lt as isWoff, lu as StandardStampName, m as OcrWord, ma as DataMatrixOptions, mc as LinearizationOptions, md as beginMarkedContent, mf as setMiterLimit, mi as ExceededMaxLengthError, ml as buildCertificateChain, mn as buildPdfX6OutputIntent, mo as isWebPLossless, mr as buildRequirement, ms as initJpegWasm, mt as ExternalSigner, mu as PdfPolygonAnnotation, n as index_d_exports, na as readBarcode, nc as SRGB_ICC_PROFILE, nd as validatePdfUa, nf as fill, ni as addBookmark, nl as findExistingSignatures, nn as renderCodeFrame, no as IfdEntry, nr as SarifRun, ns as OptimizeResult, nt as upscale8To16, nu as PdfFileAttachmentAnnotation, o as TileOptions, oa as readEan8, oc as detectTransparency, od as buildXmpMetadata, of as lineTo, oi as FlattenFormResult, ol as verifySignatureDetailed, on as InvoiceParty, oo as decodeTiffAll, or as toSarif, os as estimateJpegQuality, ot as parseTileInfo, ou as PdfRedactAnnotation, p as OcrEngine, pa as pdf417ToOperators, pc as LinearizationInfo, pd as beginArtifactWithType, pf as setLineWidth, pi as EncryptedPdfError, pl as verifyOfflineRevocation, pn as buildGtsPdfxVersion, po as isWebP, pr as RequirementType, ps as encodeJpegWasm, pt as DeferredSignResult, pu as PdfPolyLineAnnotation, q as findHyphenationPoints, qa as configureWasmLoader, qc as SignatureChainEntry, qd as closeAndStroke, qi as PresetOptions, ql as generateFreeTextAppearance, qn as buildCalGray, qo as DeduplicationReport, qr as processBatch, qs as getProfile, qt as PdfA4Options, qu as computeFileEncryptionKey, r as initWasm, ra as readCode128, rc as generateSrgbIccProfile, rd as checkAccessibility, rf as fillAndStroke, ri as getBookmarks, rl as parseExistingTrailer, rn as FacturXProfile, ro as TiffDecodeOptions, rr as ValidationFinding, rs as RawImageData, rt as assembleTiles, ru as CaretSymbol, s as computeTileGrid, sa as StyledBarcodeOptions, sc as flattenTransparency, sd as createXmpStream, sf as moveTo, si as FlattenOptions, sl as EKU_OIDS, sn as generateCiiXml, so as decodeTiffPage, sr as MATHML_NAMESPACE, ss as optimizeImage, st as WoffInfo, su as PdfInkAnnotation, t as InitWasmOptions, ta as BarcodeReadResult, tc as buildOutputIntent, td as enforcePdfUa, tf as endPath, ti as BookmarkRef, tl as appendIncrementalUpdate, tn as levenshtein, to as resetWasmLoader, tr as SarifResult, ts as ImageOptimizeOptions, tt as summarizeBitDepth, tu as FileAttachmentIcon, u as RedactResult, ua as Pdf417Matrix, uc as PdfAValidationResult, ud as PDFOperator, uf as setFlatness, ui as flattenForm, ul as validateKeyUsage, un as PdfX6Options, uo as parseTiffIfd, ur as buildNamespace, us as JpegDecodeResult, ut as isWoff2, uu as LineEndingStyle, v as compareImages, va as calculateUpcCheckDigit, vc as linearizePdf, vd as endArtifact, vf as ChangeTracker, vi as ForeignPageError, vl as isCertificateRevoked, vn as buildSampledTransferFunction, vo as embedTiffDirect, vr as ExtractedTable, vs as RedactionResult, vt as WorkerPool, vu as PdfStrikeOutAnnotation, w as extractImages$1, wa as encodeEan13, wc as LtvOptions, wd as beginText, wi as PluginError, wl as requestTimestamp, wn as ExponentialFunction, wo as detectImageFormat, wr as accessibilityPlugin, ws as EnforcePdfAResult, wt as buildVtDpm, wu as PdfTextAnnotation, x as FontFileFormat, xa as calculateEanCheckDigit, xc as findChangedObjects, xd as drawImageWithMatrix, xf as saveIncremental, xi as InvalidPageSizeError, xl as TimestampResult, xn as buildType5Halftone, xo as webpToJpeg, xr as tableToCsv, xs as enforcePdfX, xt as PdfVtConformance, xu as PdfFreeTextAnnotation, y as comparePages, ya as encodeUpcA, yc as IncrementalChange, yd as endMarkedContent, yf as IncrementalSaveResult, yi as InvalidColorError, yl as checkCertificateStatus, yn as buildThresholdHalftone, yo as encodePngFromPixels, yr as TableExtractOptions, ys as applyRedaction, yt as WorkerPoolOptions, yu as PdfUnderlineAnnotation, z as DisplayList, za as BarcodeOptions, zc as ModificationReport, zd as showTextHex, zi as OverflowResult, zl as PrepareAppearanceOptions, zn as reconstructLines, zo as computeTargetDimensions, zr as isValidModuleName, zs as createAssociatedFile, zt as splitByScript, zu as sha256 } from "./index-Cai7jC6u.mjs";
2
2
  import { $ as formatPdfDate, $n as translate, $t as applyRedactions, A as OutlineDestination, An as StructureType, Ar as setStrokingColor, At as QrCodeMatrix, B as EncryptOptions, Bn as Radians, Bt as RadialGradientOptions, C as VisibleSignatureOptions, Cn as annotationFromDict, Cr as setFillColorRgb, Ct as TableColumn, D as ViewerPreferences, Dn as PdfStructureElement, Dr as setStrokeColorGray, Dt as renderMultiPageTable, E as PdfViewerPreferences, En as AccessibilityIssue, Er as setStrokeColorCmyk, Et as TextRun, F as loadPdf, Fn as ParseSpeeds, Ft as GradientFill, G as CatalogOptions, Gn as radiansToDegrees, Gt as radialGradient, H as PdfPermissionFlags, Hn as degrees, Ht as buildGradientObjects, I as PdfSaveOptions, In as TextAlignment, It as LinearGradientOptions, J as PageEntry, Jn as rotationMatrix, Jt as EmbedPageOptions, K as DocumentMetadata, Kn as restoreState, Kt as tilingPattern, L as PdfWriter, Ln as TextRenderingMode, Lt as NormalizedStop, M as PdfOutlineItem, Mn as ImageAlignment, Mr as spotResourceName, Mt as encodeQrCode, N as PdfOutlineTree, Nn as LineCapStyle, Nt as qrCodeToOperators, O as buildViewerPreferencesDict, On as PdfStructureTree, Or as setStrokeColorRgb, Ot as renderTable, P as LoadPdfOptions, Pn as LineJoinStyle, Pt as ColorStop, Q as buildPageTree, Qn as skew, Qt as RedactionOptions, R as serializePdf, Rn as Angle, Rt as PatternFill, S as SignOptions, Sn as PdfAnnotation, Sr as setFillColorGray, St as TableCell, T as signPdf, Tn as createAnnotation, Tr as setStrokeColor, Tt as TableRow, U as decodePermissions, Un as degreesToRadians, Ut as buildPatternObjects, V as PdfEncryptionHandler, Vn as concatMatrix, Vt as TilingPatternOptions, W as encodePermissions, Wn as radians, Wt as linearGradient, X as buildDocumentStructure, Xn as scale, Xt as embedPageAsFormXObject, Y as buildCatalog, Yn as saveState, Yt as EmbeddedPdfPage, Z as buildInfoDict, Zn as setGraphicsState, Zt as RedactionMark, _ as EmbeddedFile, _n as parseSvgPath, _r as rgb, _t as CellContent, a as StandardFonts, an as endLayerContent, ar as SpotColor, at as DrawRectangleOptions, b as getAttachments, bn as AnnotationOptions, br as setFillColor, bt as NestedTableContent, c as PdfPluginManager, cn as svgToPdfOperators, cr as cmyk, ct as DrawTextOptions, d as SignatureVerificationResult, dn as SvgGradient, dr as colorToHex, dt as PageSize, en as getRedactionMarks, er as CmykColor, et as DrawCircleOptions, f as verifySignature, fn as SvgGradientStop, fr as componentsToColor, ft as PageSizes, g as addWatermarkToPage, gn as parseSvgColor, gr as hexToColor, gt as TransparencyGroupOptions, h as addWatermark, hn as parseSvg, hr as grayscale, ht as SoftMaskRef, i as StandardFontName, in as beginLayerContent, ir as RgbColor, it as DrawQrCodeOptions, j as OutlineItemOptions, jn as BlendMode, jr as spotColor, jt as QrCodeOptions, k as parseViewerPreferences, kn as StructureElementOptions, kr as setStrokeColorSpace, kt as ErrorCorrectionLevel, l as PluginDocument, ln as SvgDrawCommand, lr as cmykToRgb, lt as FontRef, m as WatermarkOptions, mn as interpolateLinearRgb, mr as deviceNResourceName, mt as SoftMaskBuilder, n as PdfDocument, nn as PdfLayer, nr as DeviceNColor, nt as DrawImageOptions, o as createPdf, on as SvgRenderOptions, or as applyFillColor, ot as DrawSquareOptions, p as verifySignatures, pn as applySpreadMethod, pr as deviceNColor, pt as PdfPage, q as DocumentStructure, qn as rotate, qt as DrawPageOptions, r as SetTitleOptions, rn as PdfLayerManager, rr as GrayscaleColor, rt as DrawLineOptions, s as PdfPlugin, sn as drawSvgOnPage, sr as applyStrokeColor, st as DrawSvgPathOptions, t as EmbedFontOptions, tn as markForRedaction, tr as Color, tt as DrawEllipseOptions, u as PluginPage, un as SvgElement, ur as colorToComponents, ut as ImageRef, v as attachFile, vn as parseSvgTransform, vr as rgbToCmyk, vt as DrawTableOptions, w as getSignatures, wn as buildAnnotationDict, wr as setFillingColor, wt as TableRenderResult, x as PdfSignatureInfo, xn as AnnotationType, xr as setFillColorCmyk, xt as PageContent, y as buildEmbeddedFilesNameTree, yn as AnnotationFlags, yr as setColorSpace, yt as MultiPageTableResult, z as EncryptAlgorithm, zn as Degrees, zt as RadialGradientFill } from "./pdfDocument-B_0VSUHL.mjs";
3
3
  import { C as PdfRef, E as RegistryEntry, S as PdfObjectRegistry, T as PdfString, _ as PdfDict, a as PdfListboxField, b as PdfNumber, c as PdfCheckboxField, d as FieldType, f as PdfField, g as PdfBool, h as PdfArray, i as PdfButtonField, l as PdfTextField, m as ByteWriter, n as RefResolver, o as PdfDropdownField, p as WidgetAnnotationHost, r as PdfSignatureField, s as PdfRadioGroup, t as PdfForm, u as FieldFlags, v as PdfName, w as PdfStream, x as PdfObject, y as PdfNull } from "./pdfForm-Ca86NDWn.mjs";
4
4
  import { A as movePage, B as asPdfName, C as copyPages, D as cropPage, E as CropBox, F as rotateAllPages, I as rotatePage, L as asNumber, M as removePages, N as resizePage, O as getPageSize, P as reversePages, R as asPDFName, S as PageRange, T as splitPdf, V as asPdfNumber, _ as LayoutSinglelineResult, a as FontEmbeddingResult, b as layoutMultilineText, c as SubsetCmap, d as extractMetrics, f as ComputeFontSizeOptions, g as LayoutSinglelineOptions, h as LayoutMultilineResult, i as FontDescriptorData, j as removePage, k as insertPage, l as SubsetResult, m as LayoutMultilineOptions, n as CIDSystemInfoData, o as Type0FontData, p as LayoutCombedOptions, r as EmbeddedFont, s as WidthEntry, t as CIDFontData, u as FontMetrics, v as computeFontSize, w as mergePdfs, x as layoutSinglelineText, y as layoutCombedText, z as asPDFNumber } from "./fontEmbed-N-VWoZ0F.mjs";
5
5
  import { a as ListboxAppearanceOptions, c as TextAppearanceOptions, d as generateDropdownAppearance, f as generateListboxAppearance, h as generateTextAppearance, i as DropdownAppearanceOptions, l as generateButtonAppearance, m as generateSignatureAppearance, n as ButtonAppearanceOptions, o as RadioAppearanceOptions, p as generateRadioAppearance, r as CheckboxAppearanceOptions, s as SignatureAppearanceOptions, t as AppearanceProviderFor, u as generateCheckboxAppearance } from "./fieldAppearance-_CZdoUCD.mjs";
6
- import { _ as parseContentStream, a as ImageInfo, c as PdfParseError, d as TextExtractionOptions, f as TextItem, g as Operand, h as ContentStreamOperator, i as analyzeImages, l as formatHexContext, m as extractTextWithPositions, n as AnalyzeImagesOptions, o as decodeImageStream, p as extractText, r as ImageAnalysis, s as extractImages, t as AnalysisReport, u as decodeStream } from "./compressionAnalysis-InMeGrqw.mjs";
6
+ import { _ as parseContentStream, a as ImageInfo, c as PdfParseError, d as TextExtractionOptions, f as TextItem$1, g as Operand, h as ContentStreamOperator, i as analyzeImages, l as formatHexContext, m as extractTextWithPositions, n as AnalyzeImagesOptions, o as decodeImageStream, p as extractText, r as ImageAnalysis, s as extractImages, t as AnalysisReport, u as decodeStream } from "./compressionAnalysis-InMeGrqw.mjs";
7
7
 
8
8
  //#region src/browser/serviceWorker.d.ts
9
9
  /**
@@ -186,5 +186,5 @@ declare function saveAsDataUrl(bytes: Uint8Array): string;
186
186
  */
187
187
  declare function openInNewTab(bytes: Uint8Array, target?: string): Window | null;
188
188
  //#endregion
189
- export { AFDate_FormatEx, AFNumber_Format, type AFRelationship, AFSpecial_Format, type AccessibilityIssue, type AccessibilityPluginOptions, type AddBookmarkOptions, type AnalysisReport, type AnalyzeImagesOptions, type Angle, AnnotationFlags, type AnnotationOptions, type AnnotationType, type AppearanceProviderFor, type AppendOptions, type AssociatedFileOptions, type AssociatedFileResult, type BarcodeMatrix, type BarcodeOptions, type BarcodeOptions as EanOptions, type BarcodeOptions as UpcOptions, type BarcodeReadResult, type BatchErrorStrategy, type BatchOptimizeOptions, type BatchOptions, BatchProcessingError, type BatchProgressCallback, type BatchResult, BlendMode, type BookmarkNode, type BookmarkRef, type BoxGeometry, type ButtonAppearanceOptions, type ByteRangeResult, type ByteWriter, type CIDFontData, type CIDSystemInfoData, type CalGrayParams, type CalRGBParams, type CaretSymbol, type CatalogOptions, type CellContent, ChangeTracker, type CheckboxAppearanceOptions, type ChromaSubsampling, type CmykColor, type Code128Options, type Code39Options, type CodeFrameOptions, type CollectionOptions, type CollectionSchemaField, type CollectionView, type Color, type ColorStop, CombedTextLayoutError, type ComputeFontSizeOptions, type ContentStreamOperator, type CounterSignatureInfo, type CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, type DataMatrixOptions, type DataMatrixResult, type DeduplicationReport, type DeferredSignOptions, type DeferredSignResult, type Degrees, type DeviceNColor, type DiffEntry, type DirectEmbedOptions, type DirectEmbedResult, type DocTimeStampOptions, type DocumentDiff, type DocumentMetadata, type DocumentPart, type DocumentStructure, type DownscaleOptions, type DrawCircleOptions, type DrawEllipseOptions, type DrawImageOptions, type DrawLineOptions, type DrawPageOptions, type DrawQrCodeOptions, type DrawRectangleOptions, type DrawSquareOptions, type DrawSvgPathOptions, type DrawTableOptions, type DrawTextOptions, type DropdownAppearanceOptions, type DssData, EKU_OIDS, type EmbedFontOptions, type EmbedPageOptions, type EmbeddedFile, EmbeddedFont, type EmbeddedPdfPage, type EncryptAlgorithm, type EncryptDictValues, type EncryptOptions, EncryptedPdfError, type EnforcePdfAOptions, type EnforcePdfAResult, type EnforcementAction, type ErrorCorrectionLevel, ExceededMaxLengthError, type ExponentialFunction, type ExternalSigner, type ExtractedTable, type FacturXProfile, type FallbackFont, type FallbackRun, type FetchLike, type FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, type FieldLockInfo, type FieldLockOptions, type FieldType, type FileAttachmentIcon, type FlattenFormResult, type FlattenOptions, type FontDescriptorData, type FontEmbeddingResult, type FontMetrics, FontNotEmbeddedError, type FontRef, ForeignPageError, type FreeTextAlignment, type FunctionShadingOptions, type GradientFill, type GrayscaleColor, type HeaderFooterContent, type HeaderFooterOptions, type HeaderFooterPosition, type IccProfile, type IfdEntry, ImageAlignment, type ImageAnalysis, type ImageDpi, type ImageFormat, type ImageInfo, type ImageOptimizeEntry, type ImageOptimizeOptions, type ImageRef, type IncrementalChange, type IncrementalObject, type IncrementalSaveOptions, type IncrementalSaveResult, InitWasmOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, type Invoice, type InvoiceLine, type InvoiceParty, type ItfOptions, type JpegDecodeResult, type JpegMarkerInfo, type JpegMetadata, type JpegWasmModule, type JsonReport, type LabParams, type LayoutCombedOptions, type LayoutMultilineOptions, type LayoutMultilineResult, type LayoutSinglelineOptions, type LayoutSinglelineResult, LineCapStyle, type LineEndingStyle, LineJoinStyle, type LinearGradientOptions, type LinearizationInfo, type LinearizationOptions, type LinkHighlightMode, type ListboxAppearanceOptions, type LoadPdfOptions, type LtvOptions, MATHML_NAMESPACE, type MarkdownToPdfOptions, type MarkedContentScope, MdpPermission, type MetadataPluginOptions, MissingOnValueCheckError, type ModificationReport, type ModificationViolation, type ModificationViolationType, type MultiPageTableResult, type NamespaceDef, type NestedTableContent, NoSuchFieldError, type NormalizedStop, type Operand, type OptimizationReport, type OptimizeResult, type OrderXType, type OutlineDestination, type OutlineItemOptions, type OutputIntentOptions, type OverflowMode, type OverflowResult, type OverlayAlignment, PDF2_NAMESPACE, PDFOperator, type PageContent, type PageEntry, type PageLabelRange, type PageLabelStyle, type PageRange, type PageSize, PageSizes, ParseSpeeds, type ParsedPage, type ParsedXmpMetadata, type PatternFill, type Pdf417Matrix, type Pdf417Options, type PdfA4ExtensionProperty, type PdfA4ExtensionSchema, type PdfA4Level, type PdfA4Options, type PdfAIssue, type PdfALevel, type PdfAProfile, type PdfAValidationResult, type PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, type PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, type PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, type PdfPermissionFlags, type PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, type PdfRect, PdfRedactAnnotation, PdfRef, type PdfSaveOptions, PdfSignatureField, type PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, type PdfUaEnforcementResult, type PdfUaError, type PdfUaLevel, type PdfUaValidationResult, type PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, type PdfVtConformance, PdfWorker, type PdfWorkerOptions, PdfWriter, type PdfX6Options, type PdfX6Variant, type PluginDocument, PluginError, type PluginPage, type PostScriptFunction, type PrepareAppearanceOptions, type PresetName, type PresetOptions, type ProgressInfo, type QrCodeMatrix, type QrCodeOptions, type RadialGradientFill, type RadialGradientOptions, type Radians, type RadioAppearanceOptions, type RangeFetchOptions, type RangeFetcher, type RawImageData, type RecompressOptions, type ReconstructOptions, type RedactionMark, type RedactionOperatorOptions, type RedactionOptions, type RedactionResult, type RefResolver, type RegistryEntry, RemovePageFromEmptyDocumentError, type RequirementType, type RgbColor, RichTextFieldReadError, type RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, type SampledFunction, type SarifLog, type SarifResult, type SarifRun, type ScriptRun, type SetTitleOptions, type SignOptions, type SignatureAlgorithm, type SignatureAppearanceOptions, type SignatureByteRange, type SignatureChainEntry, type SignatureChainResult, type SignatureOptions, type SignatureVerificationResult, type SignerInfo, type SoftMaskBuilder, type SoftMaskRef, type SpotColor, type StandardFontName, StandardFonts, type StandardStampName, type StitchingFunction, StreamingParseError, type StreamingParseResult, type StreamingParserEvent, type StreamingParserOptions, StreamingPdfParser, type StripOptions, type StripResult, type StrippedFeature, type StructureElementOptions, type StructureType, type StyledBarcodeOptions, type SubsetCmap, type SubsetResult, type SvgDrawCommand, type SvgElement, type SvgGradient, type SvgGradientStop, type SvgRenderOptions, type TableCell, type TableColumn, type TableExtractOptions, type TablePreset, type TableRenderResult, type TableRow, type TaskRunner, TextAlignment, type TextAnnotationIcon, type TextAppearanceOptions, type TextExtractionOptions, type TextItem, type Line as TextLine, type Paragraph as TextParagraph, TextRenderingMode, type TextRun, type TiffCmykEmbedResult, type TiffDecodeOptions, type TiffIfdEntry, type TiffImage, type TilingPatternOptions, type TimestampPluginOptions, type TimestampResult, type TrailerInfo, type TransparencyFinding, type TransparencyGroupOptions, type TransparencyInfo, TrustStore, type Type0FontData, type Type1Halftone, UnexpectedFieldTypeError, type VNode, type ValidationFinding, type ValidationLevel, type RenderOptions as VdomRenderOptions, type ViewerPreferences, type VisibleSignatureOptions, type RecordMetadata as VtRecordMetadata, type WasmLoaderConfig, type WasmModuleName, type WatermarkOptions, type WebPImage, type WidgetAnnotationHost, type WidthEntry, type WoffInfo, type WorkerPool, type WorkerPoolOptions, type XRechnungOptions, type XmpIssue, type XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachFile, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildViewerPreferencesDict, buildVtDpm, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createPdfResponse, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawXObject, drawSvgOnPage, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractIccProfile, extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate as formatAcrobatDate, formatDate$1 as formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, handlePdfRequest, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, instantiateWasmModuleStreaming, interpolateLinearRgb, isAccessible, isCacheAvailable, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, openInNewTab, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata, parseXmpMetadata$1 as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, restoreState, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, saveState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderMultiPageTable, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveAsBlob, saveAsDataUrl, saveAsDownload, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLeading as setLineHeight, setLineCap as setLineCapOp, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
189
+ export { AFDate_FormatEx, AFNumber_Format, type AFRelationship, AFSpecial_Format, type AccessibilityIssue, type AccessibilityPluginOptions, type AddBookmarkOptions, type AnalysisReport, type AnalyzeImagesOptions, type Angle, AnnotationFlags, type AnnotationOptions, type AnnotationType, type AppearanceProviderFor, type AppendOptions, type ApplyOcrOptions, type AssociatedFileOptions, type AssociatedFileResult, type BarcodeMatrix, type BarcodeOptions, type BarcodeOptions as EanOptions, type BarcodeOptions as UpcOptions, type BarcodeReadResult, type BatchErrorStrategy, type BatchOptimizeOptions, type BatchOptions, BatchProcessingError, type BatchProgressCallback, type BatchResult, BlendMode, type BookmarkNode, type BookmarkRef, type BoxGeometry, type ButtonAppearanceOptions, type ByteRangeResult, type ByteWriter, type CIDFontData, type CIDSystemInfoData, type CalGrayParams, type CalRGBParams, type Canvas2DLike, type CanvasRenderOptions, type CaretSymbol, type CatalogOptions, type CellContent, ChangeTracker, type CheckboxAppearanceOptions, type ChromaSubsampling, type CmykColor, type Code128Options, type Code39Options, type CodeFrameOptions, type CollectionOptions, type CollectionSchemaField, type CollectionView, type Color, type ColorStop, CombedTextLayoutError, type CompareOptions, type ComputeFontSizeOptions, type ContentStreamOperator, type CounterSignatureInfo, type CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, type DataMatrixOptions, type DataMatrixResult, type DeduplicationReport, type DeferredSignOptions, type DeferredSignResult, type Degrees, type DeviceNColor, type DiffEntry, type DiffResult, type DirectEmbedOptions, type DirectEmbedResult, type DisplayItem, type DisplayList, type DocTimeStampOptions, type DocumentDiff, type DocumentMetadata, type DocumentPart, type DocumentStructure, type DownscaleOptions, type DrawCircleOptions, type DrawEllipseOptions, type DrawImageOptions, type DrawLineOptions, type DrawPageOptions, type DrawQrCodeOptions, type DrawRectangleOptions, type DrawSquareOptions, type DrawSvgPathOptions, type DrawTableOptions, type DrawTextOptions, type DropdownAppearanceOptions, type DssData, EKU_OIDS, type EmbedFontOptions, type EmbedPageOptions, type EmbeddedFile, EmbeddedFont, type EmbeddedPdfPage, type EncryptAlgorithm, type EncryptDictValues, type EncryptOptions, EncryptedPdfError, type EnforcePdfAOptions, type EnforcePdfAResult, type EnforcementAction, type ErrorCorrectionLevel, ExceededMaxLengthError, type ExponentialFunction, type ExternalSigner, type ExtractedFont, type ExtractedImage, type ExtractedTable, type FacturXProfile, type FallbackFont, type FallbackRun, type FetchLike, type FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, type FieldLockInfo, type FieldLockOptions, type FieldType, type FileAttachmentIcon, type FillItem, type FlattenFormResult, type FlattenOptions, type FontDescriptorData, type FontEmbeddingResult, type FontFileFormat, type FontMetrics, FontNotEmbeddedError, type FontRef, ForeignPageError, type FreeTextAlignment, type FunctionShadingOptions, type GradientFill, type GrayscaleColor, type HeaderFooterContent, type HeaderFooterOptions, type HeaderFooterPosition, type IccProfile, type IfdEntry, ImageAlignment, type ImageAnalysis, type ImageDpi, type ImageFormat, type ImageInfo, type ImageItem, type ImageOptimizeEntry, type ImageOptimizeOptions, type ImageRef, type IncrementalChange, type IncrementalObject, type IncrementalSaveOptions, type IncrementalSaveResult, InitWasmOptions, type InterpretOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, type Invoice, type InvoiceLine, type InvoiceParty, type ItfOptions, type JpegDecodeResult, type JpegMarkerInfo, type JpegMetadata, type JpegWasmModule, type JsonReport, type LabParams, type LayoutCombedOptions, type LayoutMultilineOptions, type LayoutMultilineResult, type LayoutSinglelineOptions, type LayoutSinglelineResult, LineCapStyle, type LineEndingStyle, LineJoinStyle, type LinearGradientOptions, type LinearizationInfo, type LinearizationOptions, type LinkHighlightMode, type ListboxAppearanceOptions, type LoadPdfOptions, type LtvOptions, MATHML_NAMESPACE, type MarkdownToPdfOptions, type MarkedContentScope, type Matrix, MdpPermission, type MetadataPluginOptions, MissingOnValueCheckError, type ModificationReport, type ModificationViolation, type ModificationViolationType, type MultiPageTableResult, type NamespaceDef, type NestedTableContent, NoSuchFieldError, type NormalizedStop, type OcrEngine, type OcrWord, type Operand, type OptimizationReport, type OptimizeResult, type OrderXType, type OutlineDestination, type OutlineItemOptions, type OutputIntentOptions, type OverflowMode, type OverflowResult, type OverlayAlignment, PDF2_NAMESPACE, PDFOperator, type PageContent, type PageEntry, type PageLabelRange, type PageLabelStyle, type PageRange, type PageSize, PageSizes, ParseSpeeds, type ParsedPage, type ParsedXmpMetadata, type PatternFill, type Pdf417Matrix, type Pdf417Options, type PdfA4ExtensionProperty, type PdfA4ExtensionSchema, type PdfA4Level, type PdfA4Options, type PdfAIssue, type PdfALevel, type PdfAProfile, type PdfAValidationResult, type PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, type PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, type PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, type PdfPermissionFlags, type PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, type PdfRect, PdfRedactAnnotation, PdfRef, type PdfSaveOptions, PdfSignatureField, type PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, type PdfUaEnforcementResult, type PdfUaError, type PdfUaLevel, type PdfUaValidationResult, type PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, type PdfVtConformance, PdfWorker, type PdfWorkerOptions, PdfWriter, type PdfX6Options, type PdfX6Variant, type PluginDocument, PluginError, type PluginPage, type PostScriptFunction, type PrepareAppearanceOptions, type PresetName, type PresetOptions, type ProgressInfo, type QrCodeMatrix, type QrCodeOptions, type RadialGradientFill, type RadialGradientOptions, type Radians, type RadioAppearanceOptions, type RangeFetchOptions, type RangeFetcher, type RasterImage, type RawImageData, type RecompressOptions, type ReconstructOptions, type RedactRect, type RedactResult, type RedactionMark, type RedactionOperatorOptions, type RedactionOptions, type RedactionResult, type RefResolver, type RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, type RenderOptions, type RequirementType, type RgbColor, type Rgba, RichTextFieldReadError, type RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, type SampledFunction, type SarifLog, type SarifResult, type SarifRun, type ScriptRun, type SetTitleOptions, type SignOptions, type SignatureAlgorithm, type SignatureAppearanceOptions, type SignatureByteRange, type SignatureChainEntry, type SignatureChainResult, type SignatureOptions, type SignatureVerificationResult, type SignerInfo, type SoftMaskBuilder, type SoftMaskRef, type SpotColor, type StandardFontName, StandardFonts, type StandardStampName, type StitchingFunction, StreamingParseError, type StreamingParseResult, type StreamingParserEvent, type StreamingParserOptions, StreamingPdfParser, type StripOptions, type StripResult, type StrippedFeature, type StrokeItem, type StructureElementOptions, type StructureType, type StyledBarcodeOptions, type SubPath, type SubsetCmap, type SubsetResult, type SvgDrawCommand, type SvgElement, type SvgGradient, type SvgGradientStop, type SvgRenderOptions, type TableCell, type TableColumn, type TableExtractOptions, type TablePreset, type TableRenderResult, type TableRow, type TaskRunner, TextAlignment, type TextAnnotationIcon, type TextAppearanceOptions, type TextItem as TextDisplayItem, type TextExtractionOptions, type TextItem$1 as TextItem, type Line as TextLine, type Paragraph as TextParagraph, TextRenderingMode, type TextRun, type ThumbnailOptions, type TiffCmykEmbedResult, type TiffDecodeOptions, type TiffIfdEntry, type TiffImage, type TileGrid, type TileOptions, type TilingPatternOptions, type TimestampPluginOptions, type TimestampResult, type TrailerInfo, type TransparencyFinding, type TransparencyGroupOptions, type TransparencyInfo, TrustStore, type Type0FontData, type Type1Halftone, UnexpectedFieldTypeError, type VNode, type ValidationFinding, type ValidationLevel, type RenderOptions$1 as VdomRenderOptions, type ViewerPreferences, type VisibleSignatureOptions, type RecordMetadata as VtRecordMetadata, type WasmLoaderConfig, type WasmModuleName, type WatermarkOptions, type WebPImage, type WidgetAnnotationHost, type WidthEntry, type WoffInfo, type WorkerPool, type WorkerPoolOptions, type XRechnungOptions, type XmpIssue, type XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOcr, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachFile, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildViewerPreferencesDict, buildVtDpm, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, compareImages, comparePages, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, computeTileGrid, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createPdfResponse, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawXObject, drawSvgOnPage, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractFonts, extractIccProfile, extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractImages$1 as extractPageImages, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate as formatAcrobatDate, formatDate$1 as formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateThumbnail, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, handlePdfRequest, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, instantiateWasmModuleStreaming, interpolateLinearRgb, interpretContentStream, interpretPage, isAccessible, isCacheAvailable, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, openInNewTab, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata, parseXmpMetadata$1 as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, restoreState, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, saveState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rasterize, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, redactRegions, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderDisplayListToCanvas, renderMultiPageTable, renderPageTile, renderPageToCanvas, renderPageToImage, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveAsBlob, saveAsDataUrl, saveAsDownload, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLeading as setLineHeight, setLineCap as setLineCapOp, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
190
190
  //# sourceMappingURL=browser.d.mts.map