@ironsoftware/ironpdf 2023.11.2 → 2024.1.1
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/package.json +2 -2
- package/src/internal/IronPdfEngine.ProtoFiles/.gitignore +5 -1
- package/src/internal/IronPdfEngine.ProtoFiles/iron_pdf_service.proto +17 -0
- package/src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto +53 -0
- package/src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto +209 -0
- package/src/internal/IronPdfEngine.ProtoFiles/pdfium_pdf_document.proto +7 -8
- package/src/internal/access.d.ts.map +1 -1
- package/src/internal/access.js +10 -2
- package/src/internal/access.js.map +1 -1
- package/src/internal/access.ts +10 -2
- package/src/internal/generated_proto/iron_pdf_service.d.ts +35 -0
- package/src/internal/generated_proto/iron_pdf_service.d.ts.map +1 -1
- package/src/internal/generated_proto/iron_pdf_service.ts +35 -0
- package/src/internal/generated_proto/ironpdfengineproto/IronPdfService.d.ts +168 -0
- package/src/internal/generated_proto/ironpdfengineproto/IronPdfService.d.ts.map +1 -1
- package/src/internal/generated_proto/ironpdfengineproto/IronPdfService.ts +196 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.d.ts +20 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayRequestStreamP.ts +24 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaByteArrayResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontEnumValResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.d.ts +7 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumAnnotationSubTypesP.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.d.ts +24 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.ts +28 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFindFontsResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFontInfoP.d.ts +2 -4
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFontInfoP.d.ts.map +1 -1
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumFontInfoP.ts +2 -4
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetAnnotationsResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetFontInfoAtResultP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.d.ts +7 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.d.ts +8 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.d.ts +22 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationP.ts +25 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.d.ts +2 -2
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.d.ts.map +1 -1
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfDocumentConstructorStreamP.ts +2 -2
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfFreeTextAnnotationP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfLinkAnnotationP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfTextAnnotationP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.d.ts +24 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayRequestStreamP.ts +28 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaByteArrayResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValRequestP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontEnumValResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.d.ts +12 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameRequestP.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumReplaceFontViaStandardFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.d.ts +7 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameRequestP.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumResolveStandardFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaObjNumResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.d.ts +10 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameRequestP.ts +13 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.d.ts +11 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumUnEmbedFontViaRegexFontNameResultP.ts +14 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.d.ts +15 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.d.ts.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.js +4 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.js.map +1 -0
- package/src/internal/generated_proto/ironpdfengineproto/PdfiumWrappedPdfAnnotationP.ts +18 -0
- package/src/internal/grpc_layer/handshake.d.ts.map +1 -1
- package/src/internal/grpc_layer/handshake.js +5 -1
- package/src/internal/grpc_layer/handshake.js.map +1 -1
- package/src/internal/grpc_layer/handshake.ts +5 -1
- package/src/internal/grpc_layer/pdfium/compress.d.ts +1 -0
- package/src/internal/grpc_layer/pdfium/compress.d.ts.map +1 -1
- package/src/internal/grpc_layer/pdfium/compress.js +20 -1
- package/src/internal/grpc_layer/pdfium/compress.js.map +1 -1
- package/src/internal/grpc_layer/pdfium/compress.ts +33 -6
- package/src/internal/grpc_layer/pdfium/io.d.ts +2 -1
- package/src/internal/grpc_layer/pdfium/io.d.ts.map +1 -1
- package/src/internal/grpc_layer/pdfium/io.js +3 -0
- package/src/internal/grpc_layer/pdfium/io.js.map +1 -1
- package/src/internal/grpc_layer/pdfium/io.ts +15 -13
- package/src/public/pdfDocument.d.ts +16 -3
- package/src/public/pdfDocument.d.ts.map +1 -1
- package/src/public/pdfDocument.js +27 -6
- package/src/public/pdfDocument.js.map +1 -1
- package/src/public/pdfDocument.ts +41 -16
- package/src/public/types.d.ts +5 -0
- package/src/public/types.d.ts.map +1 -1
- package/src/public/types.js +7 -1
- package/src/public/types.js.map +1 -1
- package/src/public/types.ts +6 -0
package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PdfiumFontInfoP as _ironpdfengineproto_PdfiumFontInfoP, PdfiumFontInfoP__Output as _ironpdfengineproto_PdfiumFontInfoP__Output } from '../ironpdfengineproto/PdfiumFontInfoP';
|
|
2
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
3
|
+
export interface PdfiumAddFontViaStandardFontNameResultP {
|
|
4
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP | null);
|
|
5
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
6
|
+
'resultOrException'?: "result" | "exception";
|
|
7
|
+
}
|
|
8
|
+
export interface PdfiumAddFontViaStandardFontNameResultP__Output {
|
|
9
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP__Output);
|
|
10
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=PdfiumAddFontViaStandardFontNameResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumAddFontViaStandardFontNameResultP.d.ts","sourceRoot":"","sources":["PdfiumAddFontViaStandardFontNameResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,IAAI,mCAAmC,EAAE,uBAAuB,IAAI,2CAA2C,EAAE,MAAM,uCAAuC,CAAC;AAC5L,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,uCAAuC;IACtD,QAAQ,CAAC,EAAE,CAAC,mCAAmC,GAAG,IAAI,CAAC,CAAC;IACxD,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,+CAA+C;IAC9D,QAAQ,CAAC,EAAE,CAAC,2CAA2C,CAAC,CAAC;IACzD,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumAddFontViaStandardFontNameResultP.js","sourceRoot":"","sources":["PdfiumAddFontViaStandardFontNameResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumAddFontViaStandardFontNameResultP.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumFontInfoP as _ironpdfengineproto_PdfiumFontInfoP, PdfiumFontInfoP__Output as _ironpdfengineproto_PdfiumFontInfoP__Output } from '../ironpdfengineproto/PdfiumFontInfoP';
|
|
4
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
5
|
+
|
|
6
|
+
export interface PdfiumAddFontViaStandardFontNameResultP {
|
|
7
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP | null);
|
|
8
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
9
|
+
'resultOrException'?: "result"|"exception";
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface PdfiumAddFontViaStandardFontNameResultP__Output {
|
|
13
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP__Output);
|
|
14
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumAnnotationSubTypesP.d.ts","sourceRoot":"","sources":["PdfiumAnnotationSubTypesP.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,yBAAyB;IACxC,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACxB;AAED,MAAM,WAAW,iCAAiC;IAChD,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumAnnotationSubTypesP.js","sourceRoot":"","sources":["PdfiumAnnotationSubTypesP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
3
|
+
export interface _ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP {
|
|
4
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
5
|
+
'fontObjNum'?: (number);
|
|
6
|
+
'embedAsType'?: (number);
|
|
7
|
+
'fontBytesSize'?: (number);
|
|
8
|
+
}
|
|
9
|
+
export interface _ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP__Output {
|
|
10
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
11
|
+
'fontObjNum'?: (number);
|
|
12
|
+
'embedAsType'?: (number);
|
|
13
|
+
'fontBytesSize'?: (number);
|
|
14
|
+
}
|
|
15
|
+
export interface PdfiumEmbedFontViaByteArrayRequestStreamP {
|
|
16
|
+
'info'?: (_ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP | null);
|
|
17
|
+
'fontBytesChunk'?: (Buffer | Uint8Array | string);
|
|
18
|
+
'request'?: "info" | "fontBytesChunk";
|
|
19
|
+
}
|
|
20
|
+
export interface PdfiumEmbedFontViaByteArrayRequestStreamP__Output {
|
|
21
|
+
'info'?: (_ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP__Output);
|
|
22
|
+
'fontBytesChunk'?: (Buffer);
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=PdfiumEmbedFontViaByteArrayRequestStreamP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumEmbedFontViaByteArrayRequestStreamP.d.ts","sourceRoot":"","sources":["PdfiumEmbedFontViaByteArrayRequestStreamP.ts"],"names":[],"mappings":";AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,gCAAgC,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,MAAM,oCAAoC,CAAC;AAE7K,MAAM,WAAW,mEAAmE;IAClF,UAAU,CAAC,EAAE,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACvD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACzB,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC5B;AAED,MAAM,WAAW,2EAA2E;IAC1F,UAAU,CAAC,EAAE,CAAC,wCAAwC,CAAC,CAAC;IACxD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACxB,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACzB,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC5B;AAED,MAAM,WAAW,yCAAyC;IACxD,MAAM,CAAC,EAAE,CAAC,mEAAmE,GAAG,IAAI,CAAC,CAAC;IACtF,gBAAgB,CAAC,EAAE,CAAC,MAAM,GAAG,UAAU,GAAG,MAAM,CAAC,CAAC;IAClD,SAAS,CAAC,EAAE,MAAM,GAAC,gBAAgB,CAAC;CACrC;AAED,MAAM,WAAW,iDAAiD;IAChE,MAAM,CAAC,EAAE,CAAC,2EAA2E,CAAC,CAAC;IACvF,gBAAgB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CAC7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumEmbedFontViaByteArrayRequestStreamP.js","sourceRoot":"","sources":["PdfiumEmbedFontViaByteArrayRequestStreamP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayRequestStreamP.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
4
|
+
|
|
5
|
+
export interface _ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP {
|
|
6
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
7
|
+
'fontObjNum'?: (number);
|
|
8
|
+
'embedAsType'?: (number);
|
|
9
|
+
'fontBytesSize'?: (number);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface _ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP__Output {
|
|
13
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
14
|
+
'fontObjNum'?: (number);
|
|
15
|
+
'embedAsType'?: (number);
|
|
16
|
+
'fontBytesSize'?: (number);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface PdfiumEmbedFontViaByteArrayRequestStreamP {
|
|
20
|
+
'info'?: (_ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP | null);
|
|
21
|
+
'fontBytesChunk'?: (Buffer | Uint8Array | string);
|
|
22
|
+
'request'?: "info"|"fontBytesChunk";
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface PdfiumEmbedFontViaByteArrayRequestStreamP__Output {
|
|
26
|
+
'info'?: (_ironpdfengineproto_PdfiumEmbedFontViaByteArrayRequestStreamP_InfoP__Output);
|
|
27
|
+
'fontBytesChunk'?: (Buffer);
|
|
28
|
+
}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
2
|
+
export interface PdfiumEmbedFontViaByteArrayResultP {
|
|
3
|
+
'success'?: (boolean);
|
|
4
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
5
|
+
'resultOrException'?: "success" | "exception";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumEmbedFontViaByteArrayResultP__Output {
|
|
8
|
+
'success'?: (boolean);
|
|
9
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumEmbedFontViaByteArrayResultP.d.ts.map
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumEmbedFontViaByteArrayResultP.d.ts","sourceRoot":"","sources":["PdfiumEmbedFontViaByteArrayResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,kCAAkC;IACjD,SAAS,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC;IACtB,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,SAAS,GAAC,WAAW,CAAC;CAC7C;AAED,MAAM,WAAW,0CAA0C;IACzD,SAAS,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC;IACtB,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumEmbedFontViaByteArrayResultP.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumEmbedFontViaByteArrayResultP.js","sourceRoot":"","sources":["PdfiumEmbedFontViaByteArrayResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumEmbedFontViaByteArrayResultP {
|
|
6
|
+
'success'?: (boolean);
|
|
7
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
8
|
+
'resultOrException'?: "success"|"exception";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumEmbedFontViaByteArrayResultP__Output {
|
|
12
|
+
'success'?: (boolean);
|
|
13
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
2
|
+
export interface PdfiumFindFontsRequestP {
|
|
3
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
4
|
+
'regex'?: (string);
|
|
5
|
+
}
|
|
6
|
+
export interface PdfiumFindFontsRequestP__Output {
|
|
7
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
8
|
+
'regex'?: (string);
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=PdfiumFindFontsRequestP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumFindFontsRequestP.d.ts","sourceRoot":"","sources":["PdfiumFindFontsRequestP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,gCAAgC,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,MAAM,oCAAoC,CAAC;AAE7K,MAAM,WAAW,uBAAuB;IACtC,UAAU,CAAC,EAAE,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACvD,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACpB;AAED,MAAM,WAAW,+BAA+B;IAC9C,UAAU,CAAC,EAAE,CAAC,wCAAwC,CAAC,CAAC;IACxD,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumFindFontsRequestP.js","sourceRoot":"","sources":["PdfiumFindFontsRequestP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumFindFontsRequestP {
|
|
6
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
7
|
+
'regex'?: (string);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface PdfiumFindFontsRequestP__Output {
|
|
11
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
12
|
+
'regex'?: (string);
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PdfiumFontInfoCollectionP as _ironpdfengineproto_PdfiumFontInfoCollectionP, PdfiumFontInfoCollectionP__Output as _ironpdfengineproto_PdfiumFontInfoCollectionP__Output } from '../ironpdfengineproto/PdfiumFontInfoCollectionP';
|
|
2
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
3
|
+
export interface PdfiumFindFontsResultP {
|
|
4
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoCollectionP | null);
|
|
5
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
6
|
+
'resultOrException'?: "result" | "exception";
|
|
7
|
+
}
|
|
8
|
+
export interface PdfiumFindFontsResultP__Output {
|
|
9
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoCollectionP__Output);
|
|
10
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=PdfiumFindFontsResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumFindFontsResultP.d.ts","sourceRoot":"","sources":["PdfiumFindFontsResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,yBAAyB,IAAI,6CAA6C,EAAE,iCAAiC,IAAI,qDAAqD,EAAE,MAAM,iDAAiD,CAAC;AAC9O,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,EAAE,CAAC,6CAA6C,GAAG,IAAI,CAAC,CAAC;IAClE,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,EAAE,CAAC,qDAAqD,CAAC,CAAC;IACnE,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumFindFontsResultP.js","sourceRoot":"","sources":["PdfiumFindFontsResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumFontInfoCollectionP as _ironpdfengineproto_PdfiumFontInfoCollectionP, PdfiumFontInfoCollectionP__Output as _ironpdfengineproto_PdfiumFontInfoCollectionP__Output } from '../ironpdfengineproto/PdfiumFontInfoCollectionP';
|
|
4
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
5
|
+
|
|
6
|
+
export interface PdfiumFindFontsResultP {
|
|
7
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoCollectionP | null);
|
|
8
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
9
|
+
'resultOrException'?: "result"|"exception";
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface PdfiumFindFontsResultP__Output {
|
|
13
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoCollectionP__Output);
|
|
14
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
15
|
+
}
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
export interface PdfiumFontInfoP {
|
|
2
|
-
'id'?: (number);
|
|
3
2
|
'objNum'?: (number);
|
|
4
|
-
'nameLength'?: (number);
|
|
5
3
|
'isEmbedded'?: (boolean);
|
|
6
4
|
'name'?: (string);
|
|
7
5
|
'type'?: (number);
|
|
6
|
+
'descendantFontObjNum'?: (number);
|
|
8
7
|
}
|
|
9
8
|
export interface PdfiumFontInfoP__Output {
|
|
10
|
-
'id'?: (number);
|
|
11
9
|
'objNum'?: (number);
|
|
12
|
-
'nameLength'?: (number);
|
|
13
10
|
'isEmbedded'?: (boolean);
|
|
14
11
|
'name'?: (string);
|
|
15
12
|
'type'?: (number);
|
|
13
|
+
'descendantFontObjNum'?: (number);
|
|
16
14
|
}
|
|
17
15
|
//# sourceMappingURL=PdfiumFontInfoP.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PdfiumFontInfoP.d.ts","sourceRoot":"","sources":["PdfiumFontInfoP.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,eAAe;IAC9B,
|
|
1
|
+
{"version":3,"file":"PdfiumFontInfoP.d.ts","sourceRoot":"","sources":["PdfiumFontInfoP.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,YAAY,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC;IACzB,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAClB,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAClB,sBAAsB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACnC;AAED,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,YAAY,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC;IACzB,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAClB,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IAClB,sBAAsB,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACnC"}
|
|
@@ -2,19 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
export interface PdfiumFontInfoP {
|
|
5
|
-
'id'?: (number);
|
|
6
5
|
'objNum'?: (number);
|
|
7
|
-
'nameLength'?: (number);
|
|
8
6
|
'isEmbedded'?: (boolean);
|
|
9
7
|
'name'?: (string);
|
|
10
8
|
'type'?: (number);
|
|
9
|
+
'descendantFontObjNum'?: (number);
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
export interface PdfiumFontInfoP__Output {
|
|
14
|
-
'id'?: (number);
|
|
15
13
|
'objNum'?: (number);
|
|
16
|
-
'nameLength'?: (number);
|
|
17
14
|
'isEmbedded'?: (boolean);
|
|
18
15
|
'name'?: (string);
|
|
19
16
|
'type'?: (number);
|
|
17
|
+
'descendantFontObjNum'?: (number);
|
|
20
18
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
2
|
+
export interface PdfiumGetAnnotationsRequestP {
|
|
3
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
4
|
+
'pageIndex'?: (number);
|
|
5
|
+
}
|
|
6
|
+
export interface PdfiumGetAnnotationsRequestP__Output {
|
|
7
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
8
|
+
'pageIndex'?: (number);
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=PdfiumGetAnnotationsRequestP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetAnnotationsRequestP.d.ts","sourceRoot":"","sources":["PdfiumGetAnnotationsRequestP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,gCAAgC,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,MAAM,oCAAoC,CAAC;AAE7K,MAAM,WAAW,4BAA4B;IAC3C,UAAU,CAAC,EAAE,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACvD,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACxB;AAED,MAAM,WAAW,oCAAoC;IACnD,UAAU,CAAC,EAAE,CAAC,wCAAwC,CAAC,CAAC;IACxD,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetAnnotationsRequestP.js","sourceRoot":"","sources":["PdfiumGetAnnotationsRequestP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumGetAnnotationsRequestP {
|
|
6
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
7
|
+
'pageIndex'?: (number);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface PdfiumGetAnnotationsRequestP__Output {
|
|
11
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
12
|
+
'pageIndex'?: (number);
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PdfiumPdfAnnotationCollectionP as _ironpdfengineproto_PdfiumPdfAnnotationCollectionP, PdfiumPdfAnnotationCollectionP__Output as _ironpdfengineproto_PdfiumPdfAnnotationCollectionP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationCollectionP';
|
|
2
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
3
|
+
export interface PdfiumGetAnnotationsResultP {
|
|
4
|
+
'result'?: (_ironpdfengineproto_PdfiumPdfAnnotationCollectionP | null);
|
|
5
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
6
|
+
'resultOrException'?: "result" | "exception";
|
|
7
|
+
}
|
|
8
|
+
export interface PdfiumGetAnnotationsResultP__Output {
|
|
9
|
+
'result'?: (_ironpdfengineproto_PdfiumPdfAnnotationCollectionP__Output);
|
|
10
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=PdfiumGetAnnotationsResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetAnnotationsResultP.d.ts","sourceRoot":"","sources":["PdfiumGetAnnotationsResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,8BAA8B,IAAI,kDAAkD,EAAE,sCAAsC,IAAI,0DAA0D,EAAE,MAAM,sDAAsD,CAAC;AACvQ,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,2BAA2B;IAC1C,QAAQ,CAAC,EAAE,CAAC,kDAAkD,GAAG,IAAI,CAAC,CAAC;IACvE,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,mCAAmC;IAClD,QAAQ,CAAC,EAAE,CAAC,0DAA0D,CAAC,CAAC;IACxE,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetAnnotationsResultP.js","sourceRoot":"","sources":["PdfiumGetAnnotationsResultP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_annotation.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumPdfAnnotationCollectionP as _ironpdfengineproto_PdfiumPdfAnnotationCollectionP, PdfiumPdfAnnotationCollectionP__Output as _ironpdfengineproto_PdfiumPdfAnnotationCollectionP__Output } from '../ironpdfengineproto/PdfiumPdfAnnotationCollectionP';
|
|
4
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
5
|
+
|
|
6
|
+
export interface PdfiumGetAnnotationsResultP {
|
|
7
|
+
'result'?: (_ironpdfengineproto_PdfiumPdfAnnotationCollectionP | null);
|
|
8
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
9
|
+
'resultOrException'?: "result"|"exception";
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface PdfiumGetAnnotationsResultP__Output {
|
|
13
|
+
'result'?: (_ironpdfengineproto_PdfiumPdfAnnotationCollectionP__Output);
|
|
14
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
2
|
+
export interface PdfiumGetFontInfoAtRequestP {
|
|
3
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
4
|
+
'fontObjNum'?: (number);
|
|
5
|
+
}
|
|
6
|
+
export interface PdfiumGetFontInfoAtRequestP__Output {
|
|
7
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
8
|
+
'fontObjNum'?: (number);
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=PdfiumGetFontInfoAtRequestP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetFontInfoAtRequestP.d.ts","sourceRoot":"","sources":["PdfiumGetFontInfoAtRequestP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,gCAAgC,EAAE,oBAAoB,IAAI,wCAAwC,EAAE,MAAM,oCAAoC,CAAC;AAE7K,MAAM,WAAW,2BAA2B;IAC1C,UAAU,CAAC,EAAE,CAAC,gCAAgC,GAAG,IAAI,CAAC,CAAC;IACvD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACzB;AAED,MAAM,WAAW,mCAAmC;IAClD,UAAU,CAAC,EAAE,CAAC,wCAAwC,CAAC,CAAC;IACxD,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetFontInfoAtRequestP.js","sourceRoot":"","sources":["PdfiumGetFontInfoAtRequestP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumGetFontInfoAtRequestP {
|
|
6
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
|
|
7
|
+
'fontObjNum'?: (number);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface PdfiumGetFontInfoAtRequestP__Output {
|
|
11
|
+
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
|
|
12
|
+
'fontObjNum'?: (number);
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PdfiumFontInfoP as _ironpdfengineproto_PdfiumFontInfoP, PdfiumFontInfoP__Output as _ironpdfengineproto_PdfiumFontInfoP__Output } from '../ironpdfengineproto/PdfiumFontInfoP';
|
|
2
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
3
|
+
export interface PdfiumGetFontInfoAtResultP {
|
|
4
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP | null);
|
|
5
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
6
|
+
'resultOrException'?: "result" | "exception";
|
|
7
|
+
}
|
|
8
|
+
export interface PdfiumGetFontInfoAtResultP__Output {
|
|
9
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP__Output);
|
|
10
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=PdfiumGetFontInfoAtResultP.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetFontInfoAtResultP.d.ts","sourceRoot":"","sources":["PdfiumGetFontInfoAtResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,IAAI,mCAAmC,EAAE,uBAAuB,IAAI,2CAA2C,EAAE,MAAM,uCAAuC,CAAC;AAC5L,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,EAAE,CAAC,mCAAmC,GAAG,IAAI,CAAC,CAAC;IACxD,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,kCAAkC;IACjD,QAAQ,CAAC,EAAE,CAAC,2CAA2C,CAAC,CAAC;IACzD,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetFontInfoAtResultP.js","sourceRoot":"","sources":["PdfiumGetFontInfoAtResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { PdfiumFontInfoP as _ironpdfengineproto_PdfiumFontInfoP, PdfiumFontInfoP__Output as _ironpdfengineproto_PdfiumFontInfoP__Output } from '../ironpdfengineproto/PdfiumFontInfoP';
|
|
4
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
5
|
+
|
|
6
|
+
export interface PdfiumGetFontInfoAtResultP {
|
|
7
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP | null);
|
|
8
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
9
|
+
'resultOrException'?: "result"|"exception";
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface PdfiumGetFontInfoAtResultP__Output {
|
|
13
|
+
'result'?: (_ironpdfengineproto_PdfiumFontInfoP__Output);
|
|
14
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
15
|
+
}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetStandardFontNameRequestP.d.ts","sourceRoot":"","sources":["PdfiumGetStandardFontNameRequestP.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,iCAAiC;IAChD,SAAS,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACtB;AAED,MAAM,WAAW,yCAAyC;IACxD,SAAS,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;CACtB"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameRequestP.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetStandardFontNameRequestP.js","sourceRoot":"","sources":["PdfiumGetStandardFontNameRequestP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
2
|
+
export interface PdfiumGetStandardFontNameResultP {
|
|
3
|
+
'result'?: (string);
|
|
4
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
5
|
+
'resultOrException'?: "result" | "exception";
|
|
6
|
+
}
|
|
7
|
+
export interface PdfiumGetStandardFontNameResultP__Output {
|
|
8
|
+
'result'?: (string);
|
|
9
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=PdfiumGetStandardFontNameResultP.d.ts.map
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetStandardFontNameResultP.d.ts","sourceRoot":"","sources":["PdfiumGetStandardFontNameResultP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,IAAI,oCAAoC,EAAE,wBAAwB,IAAI,4CAA4C,EAAE,MAAM,wCAAwC,CAAC;AAEjM,MAAM,WAAW,gCAAgC;IAC/C,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,QAAQ,GAAC,WAAW,CAAC;CAC5C;AAED,MAAM,WAAW,wCAAwC;IACvD,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,4CAA4C,CAAC,CAAC;CAC9D"}
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumGetStandardFontNameResultP.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumGetStandardFontNameResultP.js","sourceRoot":"","sources":["PdfiumGetStandardFontNameResultP.ts"],"names":[],"mappings":";AAAA,yEAAyE"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_font.proto
|
|
2
|
+
|
|
3
|
+
import type { RemoteExceptionP as _ironpdfengineproto_RemoteExceptionP, RemoteExceptionP__Output as _ironpdfengineproto_RemoteExceptionP__Output } from '../ironpdfengineproto/RemoteExceptionP';
|
|
4
|
+
|
|
5
|
+
export interface PdfiumGetStandardFontNameResultP {
|
|
6
|
+
'result'?: (string);
|
|
7
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP | null);
|
|
8
|
+
'resultOrException'?: "result"|"exception";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface PdfiumGetStandardFontNameResultP__Output {
|
|
12
|
+
'result'?: (string);
|
|
13
|
+
'exception'?: (_ironpdfengineproto_RemoteExceptionP__Output);
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { PdfiumWrappedPdfAnnotationP as _ironpdfengineproto_PdfiumWrappedPdfAnnotationP, PdfiumWrappedPdfAnnotationP__Output as _ironpdfengineproto_PdfiumWrappedPdfAnnotationP__Output } from '../ironpdfengineproto/PdfiumWrappedPdfAnnotationP';
|
|
2
|
+
export interface PdfiumPdfAnnotationCollectionP {
|
|
3
|
+
'annotations'?: (_ironpdfengineproto_PdfiumWrappedPdfAnnotationP)[];
|
|
4
|
+
}
|
|
5
|
+
export interface PdfiumPdfAnnotationCollectionP__Output {
|
|
6
|
+
'annotations'?: (_ironpdfengineproto_PdfiumWrappedPdfAnnotationP__Output)[];
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=PdfiumPdfAnnotationCollectionP.d.ts.map
|
package/src/internal/generated_proto/ironpdfengineproto/PdfiumPdfAnnotationCollectionP.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfAnnotationCollectionP.d.ts","sourceRoot":"","sources":["PdfiumPdfAnnotationCollectionP.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,2BAA2B,IAAI,+CAA+C,EAAE,mCAAmC,IAAI,uDAAuD,EAAE,MAAM,mDAAmD,CAAC;AAExP,MAAM,WAAW,8BAA8B;IAC7C,aAAa,CAAC,EAAE,CAAC,+CAA+C,CAAC,EAAE,CAAC;CACrE;AAED,MAAM,WAAW,sCAAsC;IACrD,aAAa,CAAC,EAAE,CAAC,uDAAuD,CAAC,EAAE,CAAC;CAC7E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfiumPdfAnnotationCollectionP.js","sourceRoot":"","sources":["PdfiumPdfAnnotationCollectionP.ts"],"names":[],"mappings":";AAAA,+EAA+E"}
|