@xberg-io/xberg-wasm 1.1.1 → 1.1.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xberg-io/xberg-wasm",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "private": false,
5
5
  "description": "High-performance document intelligence library",
6
6
  "license": "MIT",
@@ -2,7 +2,7 @@
2
2
  "name": "xberg-wasm",
3
3
  "type": "module",
4
4
  "description": "High-performance document intelligence library",
5
- "version": "1.1.1",
5
+ "version": "1.1.3",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -2680,15 +2680,19 @@ export class WasmGridCell {
2680
2680
  free(): void;
2681
2681
  [Symbol.dispose](): void;
2682
2682
  static default(): WasmGridCell;
2683
- constructor(content: string, row: number, col: number, rowSpan: number, colSpan: number, isHeader: boolean, bbox?: WasmBoundingBox | null);
2683
+ constructor(content: string, row: number, col: number, rowSpan: number, colSpan: number, isHeader: boolean, bbox?: WasmBoundingBox | null, headingLevel?: number | null, styleName?: string | null);
2684
2684
  get bbox(): WasmBoundingBox | undefined;
2685
2685
  set bbox(value: WasmBoundingBox | null | undefined);
2686
2686
  col: number;
2687
2687
  colSpan: number;
2688
2688
  content: string;
2689
+ get headingLevel(): number | undefined;
2690
+ set headingLevel(value: number | null | undefined);
2689
2691
  isHeader: boolean;
2690
2692
  row: number;
2691
2693
  rowSpan: number;
2694
+ get styleName(): string | undefined;
2695
+ set styleName(value: string | null | undefined);
2692
2696
  }
2693
2697
 
2694
2698
  /**
@@ -6186,9 +6190,10 @@ export class WasmTable {
6186
6190
  free(): void;
6187
6191
  [Symbol.dispose](): void;
6188
6192
  static default(): WasmTable;
6189
- constructor(cells?: any | null, markdown?: string | null, pageNumber?: number | null, boundingBox?: WasmBoundingBox | null, tableId?: string | null, columns?: string[] | null);
6193
+ constructor(cells?: any | null, markdown?: string | null, pageNumber?: number | null, cellStyles?: WasmTableCellStyle[] | null, boundingBox?: WasmBoundingBox | null, tableId?: string | null, columns?: string[] | null);
6190
6194
  get boundingBox(): WasmBoundingBox | undefined;
6191
6195
  set boundingBox(value: WasmBoundingBox | null | undefined);
6196
+ cellStyles: WasmTableCellStyle[];
6192
6197
  cells: any;
6193
6198
  get columns(): string[] | undefined;
6194
6199
  set columns(value: string[] | null | undefined);
@@ -6214,6 +6219,25 @@ export class WasmTableCell {
6214
6219
  rowSpan: number;
6215
6220
  }
6216
6221
 
6222
+ /**
6223
+ * The paragraph style a single table cell's text carries, located by grid position.
6224
+ *
6225
+ * Flat rather than a nested `Vec<Vec<Option<..>>>`: the nested shape marshals badly across the
6226
+ * FFI bindings, and the data is sparse anyway. See `Table.cell_styles`.
6227
+ */
6228
+ export class WasmTableCellStyle {
6229
+ free(): void;
6230
+ [Symbol.dispose](): void;
6231
+ static default(): WasmTableCellStyle;
6232
+ constructor(row?: number | null, col?: number | null, headingLevel?: number | null, styleName?: string | null);
6233
+ col: number;
6234
+ get headingLevel(): number | undefined;
6235
+ set headingLevel(value: number | null | undefined);
6236
+ row: number;
6237
+ get styleName(): string | undefined;
6238
+ set styleName(value: string | null | undefined);
6239
+ }
6240
+
6217
6241
  /**
6218
6242
  * Controls how markdown tables are handled when they exceed the chunk size limit.
6219
6243
  *
@@ -6303,7 +6327,7 @@ export class WasmTesseractConfig {
6303
6327
  free(): void;
6304
6328
  [Symbol.dispose](): void;
6305
6329
  static default(): WasmTesseractConfig;
6306
- constructor(language?: string[] | null, psm?: number | null, outputFormat?: string | null, oem?: number | null, minConfidence?: number | null, enableTableDetection?: boolean | null, tableMinConfidence?: number | null, tableColumnThreshold?: number | null, tableRowThresholdRatio?: number | null, useCache?: boolean | null, classifyUsePreAdaptedTemplates?: boolean | null, languageModelNgramOn?: boolean | null, tesseditDontBlkrejGoodWds?: boolean | null, tesseditDontRowrejGoodWds?: boolean | null, tesseditEnableDictCorrection?: boolean | null, tesseditCharWhitelist?: string | null, tesseditCharBlacklist?: string | null, tesseditUsePrimaryParamsModel?: boolean | null, textordSpaceSizeIsVariable?: boolean | null, thresholdingMethod?: boolean | null, preprocessing?: WasmImagePreprocessingConfig | null);
6330
+ constructor(language?: string[] | null, outputFormat?: string | null, oem?: number | null, minConfidence?: number | null, enableTableDetection?: boolean | null, tableMinConfidence?: number | null, tableColumnThreshold?: number | null, tableRowThresholdRatio?: number | null, useCache?: boolean | null, classifyUsePreAdaptedTemplates?: boolean | null, languageModelNgramOn?: boolean | null, tesseditDontBlkrejGoodWds?: boolean | null, tesseditDontRowrejGoodWds?: boolean | null, tesseditEnableDictCorrection?: boolean | null, tesseditCharWhitelist?: string | null, tesseditCharBlacklist?: string | null, tesseditUsePrimaryParamsModel?: boolean | null, textordSpaceSizeIsVariable?: boolean | null, thresholdingMethod?: boolean | null, psm?: number | null, preprocessing?: WasmImagePreprocessingConfig | null);
6307
6331
  classifyUsePreAdaptedTemplates: boolean;
6308
6332
  enableTableDetection: boolean;
6309
6333
  language: string[];
@@ -6313,7 +6337,8 @@ export class WasmTesseractConfig {
6313
6337
  outputFormat: string;
6314
6338
  get preprocessing(): WasmImagePreprocessingConfig | undefined;
6315
6339
  set preprocessing(value: WasmImagePreprocessingConfig | null | undefined);
6316
- psm: number;
6340
+ get psm(): number | undefined;
6341
+ set psm(value: number | null | undefined);
6317
6342
  tableColumnThreshold: number;
6318
6343
  tableMinConfidence: number;
6319
6344
  tableRowThresholdRatio: number;
@@ -7284,6 +7309,7 @@ export interface InitOutput {
7284
7309
  readonly __wbg_wasmsvgoptions_free: (a: number, b: number) => void;
7285
7310
  readonly __wbg_wasmtable_free: (a: number, b: number) => void;
7286
7311
  readonly __wbg_wasmtablecell_free: (a: number, b: number) => void;
7312
+ readonly __wbg_wasmtablecellstyle_free: (a: number, b: number) => void;
7287
7313
  readonly __wbg_wasmtablegrid_free: (a: number, b: number) => void;
7288
7314
  readonly __wbg_wasmtesseractconfig_free: (a: number, b: number) => void;
7289
7315
  readonly __wbg_wasmtextannotation_free: (a: number, b: number) => void;
@@ -8768,17 +8794,21 @@ export interface InitOutput {
8768
8794
  readonly wasmgridcell_colSpan: (a: number) => number;
8769
8795
  readonly wasmgridcell_content: (a: number) => [number, number];
8770
8796
  readonly wasmgridcell_default: () => number;
8797
+ readonly wasmgridcell_headingLevel: (a: number) => number;
8771
8798
  readonly wasmgridcell_isHeader: (a: number) => number;
8772
- readonly wasmgridcell_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
8799
+ readonly wasmgridcell_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => number;
8773
8800
  readonly wasmgridcell_row: (a: number) => number;
8774
8801
  readonly wasmgridcell_rowSpan: (a: number) => number;
8775
8802
  readonly wasmgridcell_set_bbox: (a: number, b: number) => void;
8776
8803
  readonly wasmgridcell_set_col: (a: number, b: number) => void;
8777
8804
  readonly wasmgridcell_set_colSpan: (a: number, b: number) => void;
8778
8805
  readonly wasmgridcell_set_content: (a: number, b: number, c: number) => void;
8806
+ readonly wasmgridcell_set_headingLevel: (a: number, b: number) => void;
8779
8807
  readonly wasmgridcell_set_isHeader: (a: number, b: number) => void;
8780
8808
  readonly wasmgridcell_set_row: (a: number, b: number) => void;
8781
8809
  readonly wasmgridcell_set_rowSpan: (a: number, b: number) => void;
8810
+ readonly wasmgridcell_set_styleName: (a: number, b: number, c: number) => void;
8811
+ readonly wasmgridcell_styleName: (a: number) => [number, number];
8782
8812
  readonly wasmheadermetadata_default: () => number;
8783
8813
  readonly wasmheadermetadata_depth: (a: number) => number;
8784
8814
  readonly wasmheadermetadata_htmlOffset: (a: number) => number;
@@ -10277,13 +10307,15 @@ export interface InitOutput {
10277
10307
  readonly wasmsvgoptions_default: () => number;
10278
10308
  readonly wasmsvgoptions_new: (a: number, b: number) => number;
10279
10309
  readonly wasmtable_boundingBox: (a: number) => number;
10310
+ readonly wasmtable_cellStyles: (a: number) => [number, number];
10280
10311
  readonly wasmtable_cells: (a: number) => any;
10281
10312
  readonly wasmtable_columns: (a: number) => [number, number];
10282
10313
  readonly wasmtable_default: () => number;
10283
10314
  readonly wasmtable_markdown: (a: number) => [number, number];
10284
- readonly wasmtable_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
10315
+ readonly wasmtable_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => number;
10285
10316
  readonly wasmtable_pageNumber: (a: number) => number;
10286
10317
  readonly wasmtable_set_boundingBox: (a: number, b: number) => void;
10318
+ readonly wasmtable_set_cellStyles: (a: number, b: number, c: number) => void;
10287
10319
  readonly wasmtable_set_cells: (a: number, b: any) => void;
10288
10320
  readonly wasmtable_set_columns: (a: number, b: number, c: number) => void;
10289
10321
  readonly wasmtable_set_markdown: (a: number, b: number, c: number) => void;
@@ -10294,6 +10326,16 @@ export interface InitOutput {
10294
10326
  readonly wasmtablecell_default: () => number;
10295
10327
  readonly wasmtablecell_new: (a: number, b: number, c: number, d: number, e: number) => number;
10296
10328
  readonly wasmtablecell_set_colSpan: (a: number, b: number) => void;
10329
+ readonly wasmtablecellstyle_col: (a: number) => number;
10330
+ readonly wasmtablecellstyle_default: () => number;
10331
+ readonly wasmtablecellstyle_headingLevel: (a: number) => number;
10332
+ readonly wasmtablecellstyle_new: (a: number, b: number, c: number, d: number, e: number) => number;
10333
+ readonly wasmtablecellstyle_row: (a: number) => number;
10334
+ readonly wasmtablecellstyle_set_col: (a: number, b: number) => void;
10335
+ readonly wasmtablecellstyle_set_headingLevel: (a: number, b: number) => void;
10336
+ readonly wasmtablecellstyle_set_row: (a: number, b: number) => void;
10337
+ readonly wasmtablecellstyle_set_styleName: (a: number, b: number, c: number) => void;
10338
+ readonly wasmtablecellstyle_styleName: (a: number) => [number, number];
10297
10339
  readonly wasmtablegrid_cells: (a: number) => [number, number];
10298
10340
  readonly wasmtablegrid_cols: (a: number) => number;
10299
10341
  readonly wasmtablegrid_default: () => number;
@@ -10571,9 +10613,9 @@ export interface InitOutput {
10571
10613
  readonly wasmorientationresult_new: (a: number, b: number) => number;
10572
10614
  readonly wasmocrpoint_new: (a: number, b: number) => number;
10573
10615
  readonly wasmpixeldimensions_new: (a: number, b: number) => number;
10574
- readonly wasmhostmatcher_default: () => number;
10575
10616
  readonly wasmpiicategory_default: () => number;
10576
10617
  readonly wasmentitycategory_default: () => number;
10618
+ readonly wasmhostmatcher_default: () => number;
10577
10619
  readonly wasmrevisionanchor_default: () => number;
10578
10620
  readonly wasmdjotlink_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => number;
10579
10621
  readonly wasmdjotlink_default: () => number;
@@ -10596,12 +10638,12 @@ export interface InitOutput {
10596
10638
  readonly __wbg_wasmimageoutputformat_free: (a: number, b: number) => void;
10597
10639
  readonly __wbg_wasmvlmfallbackpolicy_free: (a: number, b: number) => void;
10598
10640
  readonly wasmgeojsonextractionconfig_set_includeFullCoordinates: (a: number, b: number) => void;
10641
+ readonly wasmemailconfig_set_msgFallbackCodepage: (a: number, b: number) => void;
10642
+ readonly wasmemailconfig_msgFallbackCodepage: (a: number) => number;
10599
10643
  readonly __wbg_wasmocrstrategy_free: (a: number, b: number) => void;
10600
10644
  readonly wasmyakeparams_windowSize: (a: number) => number;
10601
10645
  readonly wasmyakeparams_set_windowSize: (a: number, b: number) => void;
10602
10646
  readonly __wbg_wasmentitycategory_free: (a: number, b: number) => void;
10603
- readonly wasmemailconfig_set_msgFallbackCodepage: (a: number, b: number) => void;
10604
- readonly wasmemailconfig_msgFallbackCodepage: (a: number) => number;
10605
10647
  readonly wasmvlmfallbackpolicy_default: () => number;
10606
10648
  readonly wasmocrstrategy_default: () => number;
10607
10649
  readonly wasmpagerange_start: (a: number) => number;
@@ -10703,156 +10745,130 @@ export interface InitOutput {
10703
10745
  readonly wasmpagesignals_set_startsWithLetterheadLike: (a: number, b: number) => void;
10704
10746
  readonly wasmpagesignals_set_textExcerpt: (a: number, b: number, c: number) => void;
10705
10747
  readonly wasmerrormetadata_errorType: (a: number) => [number, number];
10706
- readonly wasmpropertychange_set_name: (a: number, b: number, c: number) => void;
10707
- readonly wasmpropertychange_name: (a: number) => [number, number];
10708
- readonly wasmfootnotedefinition_set_label: (a: number, b: number, c: number) => void;
10709
- readonly wasmfootnotedefinition_set_content: (a: number, b: number, c: number) => void;
10710
- readonly wasmfootnotedefinition_label: (a: number) => [number, number];
10711
- readonly wasmpageboundary_set_pageNumber: (a: number, b: number) => void;
10712
- readonly wasmpageboundary_set_byteStart: (a: number, b: number) => void;
10713
- readonly wasmpageboundary_set_byteEnd: (a: number, b: number) => void;
10714
- readonly wasmpageboundary_byteStart: (a: number) => number;
10715
- readonly wasmformula_set_page: (a: number, b: number) => void;
10716
- readonly wasmformula_set_latex: (a: number, b: number, c: number) => void;
10717
- readonly wasmredactionterm_value: (a: number) => [number, number];
10718
- readonly __wbg_wasmocrelementconfig_free: (a: number, b: number) => void;
10719
- readonly wasmredactionpattern_pattern: (a: number) => [number, number];
10720
- readonly __wbg_wasmredactionterm_free: (a: number, b: number) => void;
10721
- readonly wasmtablecell_set_rowSpan: (a: number, b: number) => void;
10722
- readonly wasmtablecell_set_isHeader: (a: number, b: number) => void;
10723
- readonly wasmtablecell_set_content: (a: number, b: number, c: number) => void;
10724
- readonly wasmtablecell_isHeader: (a: number) => number;
10725
- readonly wasmtablecell_content: (a: number) => [number, number];
10726
- readonly wasmpropertychange_set_to: (a: number, b: number, c: number) => void;
10727
- readonly wasmpropertychange_set_from: (a: number, b: number, c: number) => void;
10728
- readonly wasmpropertychange_to: (a: number) => [number, number];
10729
- readonly wasmpropertychange_from: (a: number) => [number, number];
10730
- readonly wasmtablecell_rowSpan: (a: number) => number;
10731
- readonly __wbg_wasmlayoutdetectionconfig_free: (a: number, b: number) => void;
10748
+ readonly wasmdjotlink_attributes: (a: number) => number;
10732
10749
  readonly wasmlayoutregion_className: (a: number) => [number, number];
10733
- readonly __wbg_wasmlayoutregion_free: (a: number, b: number) => void;
10734
- readonly wasmpagesignals_pageNumber: (a: number) => number;
10735
10750
  readonly wasmpagedimensions_set_height: (a: number, b: number) => void;
10736
10751
  readonly wasmlanguagedetectionconfig_set_minConfidence: (a: number, b: number) => void;
10752
+ readonly wasmpagedimensions_height: (a: number) => number;
10737
10753
  readonly wasmlanguagedetectionconfig_minConfidence: (a: number) => number;
10738
- readonly wasmsparseembeddingconfig_set_model: (a: number, b: any) => void;
10739
- readonly wasmsparseembeddingconfig_set_maxLength: (a: number, b: number) => void;
10740
- readonly wasmsparseembeddingconfig_set_maxEmbedDurationSecs: (a: number, b: number, c: bigint) => void;
10741
- readonly wasmsparseembeddingconfig_set_cacheDir: (a: number, b: number, c: number) => void;
10742
- readonly wasmsparseembeddingconfig_set_batchSize: (a: number, b: number) => void;
10743
- readonly wasmsparseembeddingconfig_set_acceleration: (a: number, b: number) => void;
10744
- readonly wasmsparseembeddingconfig_model: (a: number) => any;
10745
- readonly wasmsparseembeddingconfig_maxLength: (a: number) => number;
10746
- readonly wasmsparseembeddingconfig_maxEmbedDurationSecs: (a: number) => [number, bigint];
10747
- readonly wasmsparseembeddingconfig_cacheDir: (a: number) => [number, number];
10748
- readonly wasmsparseembeddingconfig_batchSize: (a: number) => number;
10749
- readonly wasmsparseembeddingconfig_acceleration: (a: number) => number;
10750
- readonly __wbg_wasmsparseembeddingconfig_free: (a: number, b: number) => void;
10751
- readonly wasmpresetsample_outputPath: (a: number) => [number, number];
10752
- readonly __wbg_wasmpresetsample_free: (a: number, b: number) => void;
10754
+ readonly __wbg_wasmpagedimensions_free: (a: number, b: number) => void;
10755
+ readonly wasmpagerange_end: (a: number) => number;
10756
+ readonly __wbg_wasmocrpoint_free: (a: number, b: number) => void;
10757
+ readonly __wbg_wasmngramrange_free: (a: number, b: number) => void;
10758
+ readonly wasmpresentationhyperlink_set_label: (a: number, b: number, c: number) => void;
10759
+ readonly __wbg_wasmemailconfig_free: (a: number, b: number) => void;
10760
+ readonly __wbg_wasmtokenreductionoptions_free: (a: number, b: number) => void;
10761
+ readonly __wbg_wasmlayoutdetectionconfig_free: (a: number, b: number) => void;
10762
+ readonly __wbg_wasmlayoutregion_free: (a: number, b: number) => void;
10763
+ readonly wasmpageconfig_set_markerFormat: (a: number, b: number, c: number) => void;
10764
+ readonly wasmtokenreductionoptions_set_preserveImportantWords: (a: number, b: number) => void;
10765
+ readonly wasmpageconfig_markerFormat: (a: number) => [number, number];
10766
+ readonly wasmtokenreductionoptions_preserveImportantWords: (a: number) => number;
10767
+ readonly __wbg_wasmpageconfig_free: (a: number, b: number) => void;
10753
10768
  readonly wasmdjotlink_set_url: (a: number, b: number, c: number) => void;
10769
+ readonly wasmdjotlink_set_title: (a: number, b: number, c: number) => void;
10754
10770
  readonly wasmdjotlink_set_text: (a: number, b: number, c: number) => void;
10755
10771
  readonly wasmdjotlink_set_attributes: (a: number, b: number) => void;
10756
10772
  readonly wasmdjotlink_url: (a: number) => [number, number];
10757
- readonly wasmdjotlink_attributes: (a: number) => number;
10758
- readonly wasmmultidocthresholds_bigramOverlapMin: (a: number) => number;
10759
- readonly wasmpixeldimensions_height: (a: number) => number;
10760
- readonly __wbg_wasmpixeldimensions_free: (a: number, b: number) => void;
10761
- readonly wasmmarkdowncodeblock_code: (a: number) => [number, number];
10762
- readonly __wbg_wasmmarkdowncodeblock_free: (a: number, b: number) => void;
10763
- readonly wasmformula_latex: (a: number) => [number, number];
10764
- readonly wasmocrstrategy_set_mode: (a: number, b: number, c: number) => void;
10765
- readonly wasmocrstrategy_minConfidence: (a: number) => [number, number];
10766
- readonly wasmdbffieldinfo_name: (a: number) => [number, number];
10767
- readonly wasmerrormetadata_message: (a: number) => [number, number];
10768
- readonly __wbg_wasmerrormetadata_free: (a: number, b: number) => void;
10769
- readonly wasmpagerange_end: (a: number) => number;
10770
- readonly __wbg_wasmocrpoint_free: (a: number, b: number) => void;
10771
- readonly wasmpageboundary_byteEnd: (a: number) => number;
10772
- readonly wasmpageboundary_pageNumber: (a: number) => number;
10773
- readonly __wbg_wasmpageboundary_free: (a: number, b: number) => void;
10774
- readonly __wbg_wasmngramrange_free: (a: number, b: number) => void;
10773
+ readonly wasmdjotlink_title: (a: number) => [number, number];
10774
+ readonly wasmdjotlink_text: (a: number) => [number, number];
10775
+ readonly __wbg_wasmdjotlink_free: (a: number, b: number) => void;
10775
10776
  readonly wasmocrpoint_set_y: (a: number, b: number) => void;
10776
10777
  readonly wasmocrpoint_set_x: (a: number, b: number) => void;
10777
10778
  readonly wasmocrpoint_y: (a: number) => number;
10778
10779
  readonly wasmocrpoint_x: (a: number) => number;
10779
10780
  readonly __wbg_wasmpagerange_free: (a: number, b: number) => void;
10780
- readonly __wbg_wasmdocumentrelationship_free: (a: number, b: number) => void;
10781
- readonly wasmdocumentrelationship_target: (a: number) => number;
10782
- readonly wasmqrboundingbox_y: (a: number) => number;
10783
- readonly wasmqrboundingbox_width: (a: number) => number;
10784
- readonly wasmqrboundingbox_height: (a: number) => number;
10785
- readonly __wbg_wasmqrboundingbox_free: (a: number, b: number) => void;
10786
- readonly __wbg_wasmlayoutdetection_free: (a: number, b: number) => void;
10787
- readonly wasmdiffline_set_kind: (a: number, b: number, c: number) => void;
10788
- readonly wasmdiffline_set_0: (a: number, b: number, c: number) => void;
10789
- readonly wasmdiffline_kind: (a: number) => [number, number];
10790
- readonly wasmpresentationhyperlink_set_label: (a: number, b: number, c: number) => void;
10781
+ readonly wasmocrrotation_set_confidence: (a: number, b: number, c: number) => void;
10782
+ readonly wasmocrrotation_confidence: (a: number) => [number, number];
10783
+ readonly wasmocrrotation_angleDegrees: (a: number) => number;
10784
+ readonly __wbg_wasmocrrotation_free: (a: number, b: number) => void;
10785
+ readonly wasmpageboundary_set_pageNumber: (a: number, b: number) => void;
10786
+ readonly wasmpageboundary_set_byteStart: (a: number, b: number) => void;
10787
+ readonly wasmpageboundary_set_byteEnd: (a: number, b: number) => void;
10788
+ readonly wasmpageboundary_byteStart: (a: number) => number;
10789
+ readonly wasmorientationresult_confidence: (a: number) => number;
10790
+ readonly wasmentitycategory_set_0: (a: number, b: number, c: number) => void;
10791
10791
  readonly wasmpresentationhyperlink_label: (a: number) => [number, number];
10792
- readonly __wbg_wasmpagesignals_free: (a: number, b: number) => void;
10793
- readonly wasmdbffieldinfo_set_name: (a: number, b: number, c: number) => void;
10794
- readonly wasmdbffieldinfo_set_fieldType: (a: number, b: number, c: number) => void;
10795
- readonly wasmdbffieldinfo_fieldType: (a: number) => [number, number];
10796
- readonly __wbg_wasmdbffieldinfo_free: (a: number, b: number) => void;
10797
- readonly wasmfootnotedefinition_content: (a: number) => [number, number];
10798
- readonly __wbg_wasmtokenreductionoptions_free: (a: number, b: number) => void;
10792
+ readonly __wbg_wasmlayoutdetection_free: (a: number, b: number) => void;
10793
+ readonly wasmocrstrategy_set_mode: (a: number, b: number, c: number) => void;
10794
+ readonly wasmpageocrconfidence_set_score: (a: number, b: number, c: number) => void;
10795
+ readonly wasmpageocrconfidence_backend: (a: number) => [number, number];
10796
+ readonly wasmocrstrategy_minConfidence: (a: number) => [number, number];
10797
+ readonly __wbg_wasmpageboundary_free: (a: number, b: number) => void;
10798
+ readonly wasmpageboundary_byteEnd: (a: number) => number;
10799
+ readonly wasmpreprocessingoptions_enabled: (a: number) => number;
10800
+ readonly wasmentitycategory_0: (a: number) => [number, number];
10801
+ readonly __wbg_wasmpresentationhyperlink_free: (a: number, b: number) => void;
10802
+ readonly wasmdocumentrelationship_target: (a: number) => number;
10803
+ readonly wasmpageboundary_pageNumber: (a: number) => number;
10804
+ readonly __wbg_wasmdocumentrelationship_free: (a: number, b: number) => void;
10799
10805
  readonly wasmproxyconfig_set_username: (a: number, b: number, c: number) => void;
10800
10806
  readonly wasmproxyconfig_set_password: (a: number, b: number, c: number) => void;
10801
10807
  readonly wasmproxyconfig_username: (a: number) => [number, number];
10802
10808
  readonly wasmproxyconfig_password: (a: number) => [number, number];
10803
- readonly __wbg_wasmproxyconfig_free: (a: number, b: number) => void;
10804
- readonly wasmhostmatcher_set_value: (a: number, b: number, c: number) => void;
10805
- readonly wasmhostmatcher_value: (a: number) => [number, number];
10806
- readonly __wbg_wasmredactionpattern_free: (a: number, b: number) => void;
10809
+ readonly wasmredactionpattern_pattern: (a: number) => [number, number];
10810
+ readonly wasmngramrange_max: (a: number) => number;
10811
+ readonly __wbg_wasmimagedimensions_free: (a: number, b: number) => void;
10812
+ readonly wasmformula_set_page: (a: number, b: number) => void;
10813
+ readonly wasmformula_set_latex: (a: number, b: number, c: number) => void;
10814
+ readonly wasmformula_latex: (a: number) => [number, number];
10815
+ readonly wasmprocessingwarning_message: (a: number) => [number, number];
10816
+ readonly __wbg_wasmprocessingwarning_free: (a: number, b: number) => void;
10817
+ readonly wasmdbffieldinfo_set_name: (a: number, b: number, c: number) => void;
10818
+ readonly wasmdbffieldinfo_set_fieldType: (a: number, b: number, c: number) => void;
10807
10819
  readonly wasmkeyvalueattribute_value: (a: number) => [number, number];
10808
10820
  readonly __wbg_wasmkeyvalueattribute_free: (a: number, b: number) => void;
10821
+ readonly wasmdbffieldinfo_name: (a: number) => [number, number];
10822
+ readonly wasmdbffieldinfo_fieldType: (a: number) => [number, number];
10823
+ readonly __wbg_wasmdbffieldinfo_free: (a: number, b: number) => void;
10824
+ readonly wasmtablecell_set_rowSpan: (a: number, b: number) => void;
10825
+ readonly wasmtablecell_set_isHeader: (a: number, b: number) => void;
10826
+ readonly wasmtablecell_set_content: (a: number, b: number, c: number) => void;
10827
+ readonly wasmtablecell_rowSpan: (a: number) => number;
10828
+ readonly wasmtablecell_isHeader: (a: number) => number;
10829
+ readonly wasmtablecell_content: (a: number) => [number, number];
10830
+ readonly __wbg_wasmqrboundingbox_free: (a: number, b: number) => void;
10831
+ readonly wasmredactionterm_value: (a: number) => [number, number];
10832
+ readonly __wbg_wasmredactionterm_free: (a: number, b: number) => void;
10833
+ readonly wasmpixeldimensions_height: (a: number) => number;
10834
+ readonly __wbg_wasmpixeldimensions_free: (a: number, b: number) => void;
10835
+ readonly wasmsupportedformat_mimeType: (a: number) => [number, number];
10809
10836
  readonly wasmhierarchicalboundingbox_set_bottom: (a: number, b: number) => void;
10810
10837
  readonly wasmhierarchicalboundingbox_set_top: (a: number, b: number) => void;
10811
10838
  readonly wasmdocumentboundary_set_confidence: (a: number, b: number) => void;
10812
10839
  readonly wasmhierarchicalboundingbox_set_left: (a: number, b: number) => void;
10813
- readonly wasmhierarchicalboundingbox_left: (a: number) => number;
10814
- readonly __wbg_wasmocrtableboundingbox_free: (a: number, b: number) => void;
10815
- readonly wasmocrrotation_set_confidence: (a: number, b: number, c: number) => void;
10816
- readonly wasmocrrotation_angleDegrees: (a: number) => number;
10817
- readonly wasmocrrotation_confidence: (a: number) => [number, number];
10818
- readonly __wbg_wasmocrrotation_free: (a: number, b: number) => void;
10840
+ readonly wasmhierarchicalboundingbox_bottom: (a: number) => number;
10819
10841
  readonly wasmhierarchicalboundingbox_top: (a: number) => number;
10820
10842
  readonly wasmhierarchicalboundingbox_right: (a: number) => number;
10821
- readonly wasmhierarchicalboundingbox_bottom: (a: number) => number;
10843
+ readonly wasmhierarchicalboundingbox_left: (a: number) => number;
10822
10844
  readonly __wbg_wasmhierarchicalboundingbox_free: (a: number, b: number) => void;
10823
- readonly wasmpageconfig_set_markerFormat: (a: number, b: number, c: number) => void;
10824
- readonly wasmtokenreductionoptions_set_preserveImportantWords: (a: number, b: number) => void;
10825
- readonly wasmpageconfig_markerFormat: (a: number) => [number, number];
10826
- readonly wasmtokenreductionoptions_preserveImportantWords: (a: number) => number;
10827
- readonly __wbg_wasmpageconfig_free: (a: number, b: number) => void;
10828
- readonly wasmocrtableboundingbox_top: (a: number) => number;
10829
- readonly wasmdocumentboundary_confidence: (a: number) => number;
10830
- readonly wasmsupportedformat_mimeType: (a: number) => [number, number];
10831
- readonly wasmocrstrategy_set_minConfidence: (a: number, b: number, c: number) => void;
10832
- readonly wasmocrstrategy_mode: (a: number) => [number, number];
10833
- readonly wasmvlmfallbackpolicy_mode: (a: number) => [number, number];
10834
- readonly wasmvlmfallbackpolicy_set_qualityThreshold: (a: number, b: number, c: number) => void;
10835
- readonly wasmprocessingwarning_message: (a: number) => [number, number];
10836
- readonly __wbg_wasmprocessingwarning_free: (a: number, b: number) => void;
10837
- readonly wasmdjotlink_set_title: (a: number, b: number, c: number) => void;
10838
- readonly wasmdjotlink_title: (a: number) => [number, number];
10839
- readonly wasmdjotlink_text: (a: number) => [number, number];
10840
- readonly __wbg_wasmdjotlink_free: (a: number, b: number) => void;
10841
- readonly wasmentitycategory_set_0: (a: number, b: number, c: number) => void;
10842
- readonly wasmentitycategory_0: (a: number) => [number, number];
10843
- readonly wasmpagedimensions_height: (a: number) => number;
10844
- readonly __wbg_wasmpagedimensions_free: (a: number, b: number) => void;
10845
- readonly wasmpreprocessingoptions_enabled: (a: number) => number;
10846
- readonly wasmrakeparams_maxWordsPerPhrase: (a: number) => number;
10847
- readonly __wbg_wasmrakeparams_free: (a: number, b: number) => void;
10848
- readonly wasmpageocrconfidence_backend: (a: number) => [number, number];
10849
- readonly wasmpageocrconfidence_set_score: (a: number, b: number, c: number) => void;
10850
- readonly wasmngramrange_max: (a: number) => number;
10851
- readonly __wbg_wasmimagedimensions_free: (a: number, b: number) => void;
10852
10845
  readonly wasmpiicategory_set_0: (a: number, b: number, c: number) => void;
10853
10846
  readonly wasmpiicategory_0: (a: number) => [number, number];
10854
- readonly wasmmarkdownlink_url: (a: number) => [number, number];
10855
- readonly __wbg_wasmmarkdownlink_free: (a: number, b: number) => void;
10847
+ readonly wasmhostmatcher_set_value: (a: number, b: number, c: number) => void;
10848
+ readonly wasmhostmatcher_value: (a: number) => [number, number];
10849
+ readonly __wbg_wasmproxyconfig_free: (a: number, b: number) => void;
10850
+ readonly wasmpagesignals_pageNumber: (a: number) => number;
10851
+ readonly __wbg_wasmpagesignals_free: (a: number, b: number) => void;
10852
+ readonly wasmfootnotedefinition_set_label: (a: number, b: number, c: number) => void;
10853
+ readonly wasmfootnotedefinition_set_content: (a: number, b: number, c: number) => void;
10854
+ readonly wasmfootnotedefinition_label: (a: number) => [number, number];
10855
+ readonly wasmfootnotedefinition_content: (a: number) => [number, number];
10856
+ readonly __wbg_wasmredactionpattern_free: (a: number, b: number) => void;
10857
+ readonly wasmsparseembeddingconfig_set_model: (a: number, b: any) => void;
10858
+ readonly wasmsparseembeddingconfig_set_maxLength: (a: number, b: number) => void;
10859
+ readonly wasmsparseembeddingconfig_set_maxEmbedDurationSecs: (a: number, b: number, c: bigint) => void;
10860
+ readonly wasmsparseembeddingconfig_set_cacheDir: (a: number, b: number, c: number) => void;
10861
+ readonly wasmsparseembeddingconfig_set_batchSize: (a: number, b: number) => void;
10862
+ readonly wasmsparseembeddingconfig_set_acceleration: (a: number, b: number) => void;
10863
+ readonly wasmsparseembeddingconfig_model: (a: number) => any;
10864
+ readonly wasmsparseembeddingconfig_maxLength: (a: number) => number;
10865
+ readonly wasmsparseembeddingconfig_maxEmbedDurationSecs: (a: number) => [number, bigint];
10866
+ readonly wasmsparseembeddingconfig_cacheDir: (a: number) => [number, number];
10867
+ readonly wasmsparseembeddingconfig_batchSize: (a: number) => number;
10868
+ readonly wasmsparseembeddingconfig_acceleration: (a: number) => number;
10869
+ readonly __wbg_wasmsparseembeddingconfig_free: (a: number, b: number) => void;
10870
+ readonly wasmpresetsample_outputPath: (a: number) => [number, number];
10871
+ readonly __wbg_wasmpresetsample_free: (a: number, b: number) => void;
10856
10872
  readonly wasmrerankerconfig_set_topK: (a: number, b: number) => void;
10857
10873
  readonly wasmrerankerconfig_set_showDownloadProgress: (a: number, b: number) => void;
10858
10874
  readonly wasmrerankerconfig_set_model: (a: number, b: any) => void;
@@ -10867,10 +10883,36 @@ export interface InitOutput {
10867
10883
  readonly wasmrerankerconfig_cacheDir: (a: number) => [number, number];
10868
10884
  readonly wasmrerankerconfig_batchSize: (a: number) => number;
10869
10885
  readonly wasmrerankerconfig_acceleration: (a: number) => number;
10886
+ readonly wasmmarkdowncodeblock_code: (a: number) => [number, number];
10887
+ readonly __wbg_wasmmarkdowncodeblock_free: (a: number, b: number) => void;
10888
+ readonly wasmocrstrategy_set_minConfidence: (a: number, b: number, c: number) => void;
10889
+ readonly wasmocrstrategy_mode: (a: number) => [number, number];
10890
+ readonly wasmerrormetadata_message: (a: number) => [number, number];
10891
+ readonly __wbg_wasmerrormetadata_free: (a: number, b: number) => void;
10892
+ readonly wasmmarkdownlink_url: (a: number) => [number, number];
10893
+ readonly __wbg_wasmmarkdownlink_free: (a: number, b: number) => void;
10894
+ readonly wasmvlmfallbackpolicy_mode: (a: number) => [number, number];
10895
+ readonly wasmvlmfallbackpolicy_set_qualityThreshold: (a: number, b: number, c: number) => void;
10896
+ readonly wasmdiffline_set_kind: (a: number, b: number, c: number) => void;
10897
+ readonly wasmdiffline_set_0: (a: number, b: number, c: number) => void;
10898
+ readonly wasmdiffline_kind: (a: number) => [number, number];
10870
10899
  readonly wasmdiffline_0: (a: number) => [number, number];
10871
- readonly __wbg_wasmpresentationhyperlink_free: (a: number, b: number) => void;
10872
- readonly wasmorientationresult_confidence: (a: number) => number;
10873
- readonly __wbg_wasmemailconfig_free: (a: number, b: number) => void;
10900
+ readonly wasmmultidocthresholds_bigramOverlapMin: (a: number) => number;
10901
+ readonly wasmqrboundingbox_y: (a: number) => number;
10902
+ readonly wasmdocumentboundary_confidence: (a: number) => number;
10903
+ readonly __wbg_wasmocrelementconfig_free: (a: number, b: number) => void;
10904
+ readonly wasmpropertychange_set_name: (a: number, b: number, c: number) => void;
10905
+ readonly wasmpropertychange_set_from: (a: number, b: number, c: number) => void;
10906
+ readonly wasmpropertychange_set_to: (a: number, b: number, c: number) => void;
10907
+ readonly wasmpropertychange_name: (a: number) => [number, number];
10908
+ readonly wasmpropertychange_from: (a: number) => [number, number];
10909
+ readonly wasmpropertychange_to: (a: number) => [number, number];
10910
+ readonly wasmrakeparams_maxWordsPerPhrase: (a: number) => number;
10911
+ readonly __wbg_wasmrakeparams_free: (a: number, b: number) => void;
10912
+ readonly __wbg_wasmocrtableboundingbox_free: (a: number, b: number) => void;
10913
+ readonly wasmocrtableboundingbox_top: (a: number) => number;
10914
+ readonly wasmqrboundingbox_width: (a: number) => number;
10915
+ readonly wasmqrboundingbox_height: (a: number) => number;
10874
10916
  readonly __wbg_wasmsparseembeddingmodeltype_free: (a: number, b: number) => void;
10875
10917
  readonly wasmsparseembeddingmodeltype_set_type: (a: number, b: number, c: number) => void;
10876
10918
  readonly wasmsparseembeddingmodeltype_set_name: (a: number, b: number, c: number) => void;
@@ -16938,6 +16938,13 @@ export class WasmGridCell {
16938
16938
  const ret = wasm.wasmgridcell_default();
16939
16939
  return WasmGridCell.__wrap(ret);
16940
16940
  }
16941
+ /**
16942
+ * @returns {number | undefined}
16943
+ */
16944
+ get headingLevel() {
16945
+ const ret = wasm.wasmgridcell_headingLevel(this.__wbg_ptr);
16946
+ return ret === 0xFFFFFF ? undefined : ret;
16947
+ }
16941
16948
  /**
16942
16949
  * @returns {boolean}
16943
16950
  */
@@ -16953,8 +16960,10 @@ export class WasmGridCell {
16953
16960
  * @param {number} colSpan
16954
16961
  * @param {boolean} isHeader
16955
16962
  * @param {WasmBoundingBox | null} [bbox]
16963
+ * @param {number | null} [headingLevel]
16964
+ * @param {string | null} [styleName]
16956
16965
  */
16957
- constructor(content, row, col, rowSpan, colSpan, isHeader, bbox) {
16966
+ constructor(content, row, col, rowSpan, colSpan, isHeader, bbox, headingLevel, styleName) {
16958
16967
  const ptr0 = passStringToWasm0(content, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
16959
16968
  const len0 = WASM_VECTOR_LEN;
16960
16969
  let ptr1 = 0;
@@ -16962,7 +16971,9 @@ export class WasmGridCell {
16962
16971
  _assertClass(bbox, WasmBoundingBox);
16963
16972
  ptr1 = bbox.__destroy_into_raw();
16964
16973
  }
16965
- const ret = wasm.wasmgridcell_new(ptr0, len0, row, col, rowSpan, colSpan, isHeader, ptr1);
16974
+ var ptr2 = isLikeNone(styleName) ? 0 : passStringToWasm0(styleName, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
16975
+ var len2 = WASM_VECTOR_LEN;
16976
+ const ret = wasm.wasmgridcell_new(ptr0, len0, row, col, rowSpan, colSpan, isHeader, ptr1, isLikeNone(headingLevel) ? 0xFFFFFF : headingLevel, ptr2, len2);
16966
16977
  this.__wbg_ptr = ret;
16967
16978
  WasmGridCellFinalization.register(this, this.__wbg_ptr, this);
16968
16979
  return this;
@@ -17012,6 +17023,12 @@ export class WasmGridCell {
17012
17023
  const len0 = WASM_VECTOR_LEN;
17013
17024
  wasm.wasmgridcell_set_content(this.__wbg_ptr, ptr0, len0);
17014
17025
  }
17026
+ /**
17027
+ * @param {number | null} [value]
17028
+ */
17029
+ set headingLevel(value) {
17030
+ wasm.wasmgridcell_set_headingLevel(this.__wbg_ptr, isLikeNone(value) ? 0xFFFFFF : value);
17031
+ }
17015
17032
  /**
17016
17033
  * @param {boolean} value
17017
17034
  */
@@ -17030,6 +17047,26 @@ export class WasmGridCell {
17030
17047
  set rowSpan(value) {
17031
17048
  wasm.wasmgridcell_set_rowSpan(this.__wbg_ptr, value);
17032
17049
  }
17050
+ /**
17051
+ * @param {string | null} [value]
17052
+ */
17053
+ set styleName(value) {
17054
+ var ptr0 = isLikeNone(value) ? 0 : passStringToWasm0(value, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
17055
+ var len0 = WASM_VECTOR_LEN;
17056
+ wasm.wasmgridcell_set_styleName(this.__wbg_ptr, ptr0, len0);
17057
+ }
17058
+ /**
17059
+ * @returns {string | undefined}
17060
+ */
17061
+ get styleName() {
17062
+ const ret = wasm.wasmgridcell_styleName(this.__wbg_ptr);
17063
+ let v1;
17064
+ if (ret[0] !== 0) {
17065
+ v1 = getStringFromWasm0(ret[0], ret[1]);
17066
+ wasm.__wbindgen_free_command_export(ret[0], ret[1] * 1, 1);
17067
+ }
17068
+ return v1;
17069
+ }
17033
17070
  }
17034
17071
  if (Symbol.dispose) WasmGridCell.prototype[Symbol.dispose] = WasmGridCell.prototype.free;
17035
17072
 
@@ -36924,6 +36961,15 @@ export class WasmTable {
36924
36961
  const ret = wasm.wasmtable_boundingBox(this.__wbg_ptr);
36925
36962
  return ret === 0 ? undefined : WasmBoundingBox.__wrap(ret);
36926
36963
  }
36964
+ /**
36965
+ * @returns {WasmTableCellStyle[]}
36966
+ */
36967
+ get cellStyles() {
36968
+ const ret = wasm.wasmtable_cellStyles(this.__wbg_ptr);
36969
+ var v1 = getArrayJsValueFromWasm0(ret[0], ret[1]);
36970
+ wasm.__wbindgen_free_command_export(ret[0], ret[1] * 4, 4);
36971
+ return v1;
36972
+ }
36927
36973
  /**
36928
36974
  * @returns {any}
36929
36975
  */
@@ -36969,23 +37015,26 @@ export class WasmTable {
36969
37015
  * @param {any | null} [cells]
36970
37016
  * @param {string | null} [markdown]
36971
37017
  * @param {number | null} [pageNumber]
37018
+ * @param {WasmTableCellStyle[] | null} [cellStyles]
36972
37019
  * @param {WasmBoundingBox | null} [boundingBox]
36973
37020
  * @param {string | null} [tableId]
36974
37021
  * @param {string[] | null} [columns]
36975
37022
  */
36976
- constructor(cells, markdown, pageNumber, boundingBox, tableId, columns) {
37023
+ constructor(cells, markdown, pageNumber, cellStyles, boundingBox, tableId, columns) {
36977
37024
  var ptr0 = isLikeNone(markdown) ? 0 : passStringToWasm0(markdown, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
36978
37025
  var len0 = WASM_VECTOR_LEN;
36979
- let ptr1 = 0;
37026
+ var ptr1 = isLikeNone(cellStyles) ? 0 : passArrayJsValueToWasm0(cellStyles, wasm.__wbindgen_malloc_command_export);
37027
+ var len1 = WASM_VECTOR_LEN;
37028
+ let ptr2 = 0;
36980
37029
  if (!isLikeNone(boundingBox)) {
36981
37030
  _assertClass(boundingBox, WasmBoundingBox);
36982
- ptr1 = boundingBox.__destroy_into_raw();
37031
+ ptr2 = boundingBox.__destroy_into_raw();
36983
37032
  }
36984
- var ptr2 = isLikeNone(tableId) ? 0 : passStringToWasm0(tableId, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
36985
- var len2 = WASM_VECTOR_LEN;
36986
- var ptr3 = isLikeNone(columns) ? 0 : passArrayJsValueToWasm0(columns, wasm.__wbindgen_malloc_command_export);
37033
+ var ptr3 = isLikeNone(tableId) ? 0 : passStringToWasm0(tableId, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
36987
37034
  var len3 = WASM_VECTOR_LEN;
36988
- const ret = wasm.wasmtable_new(isLikeNone(cells) ? 0 : addToExternrefTable0(cells), ptr0, len0, isLikeNone(pageNumber) ? Number.MAX_SAFE_INTEGER : (pageNumber) >>> 0, ptr1, ptr2, len2, ptr3, len3);
37035
+ var ptr4 = isLikeNone(columns) ? 0 : passArrayJsValueToWasm0(columns, wasm.__wbindgen_malloc_command_export);
37036
+ var len4 = WASM_VECTOR_LEN;
37037
+ const ret = wasm.wasmtable_new(isLikeNone(cells) ? 0 : addToExternrefTable0(cells), ptr0, len0, isLikeNone(pageNumber) ? Number.MAX_SAFE_INTEGER : (pageNumber) >>> 0, ptr1, len1, ptr2, ptr3, len3, ptr4, len4);
36989
37038
  this.__wbg_ptr = ret;
36990
37039
  WasmTableFinalization.register(this, this.__wbg_ptr, this);
36991
37040
  return this;
@@ -37008,6 +37057,14 @@ export class WasmTable {
37008
37057
  }
37009
37058
  wasm.wasmtable_set_boundingBox(this.__wbg_ptr, ptr0);
37010
37059
  }
37060
+ /**
37061
+ * @param {WasmTableCellStyle[]} value
37062
+ */
37063
+ set cellStyles(value) {
37064
+ const ptr0 = passArrayJsValueToWasm0(value, wasm.__wbindgen_malloc_command_export);
37065
+ const len0 = WASM_VECTOR_LEN;
37066
+ wasm.wasmtable_set_cellStyles(this.__wbg_ptr, ptr0, len0);
37067
+ }
37011
37068
  /**
37012
37069
  * @param {any} value
37013
37070
  */
@@ -37167,6 +37224,118 @@ export class WasmTableCell {
37167
37224
  }
37168
37225
  if (Symbol.dispose) WasmTableCell.prototype[Symbol.dispose] = WasmTableCell.prototype.free;
37169
37226
 
37227
+ /**
37228
+ * The paragraph style a single table cell's text carries, located by grid position.
37229
+ *
37230
+ * Flat rather than a nested `Vec<Vec<Option<..>>>`: the nested shape marshals badly across the
37231
+ * FFI bindings, and the data is sparse anyway. See `Table.cell_styles`.
37232
+ */
37233
+ export class WasmTableCellStyle {
37234
+ static __wrap(ptr) {
37235
+ const obj = Object.create(WasmTableCellStyle.prototype);
37236
+ obj.__wbg_ptr = ptr;
37237
+ WasmTableCellStyleFinalization.register(obj, obj.__wbg_ptr, obj);
37238
+ return obj;
37239
+ }
37240
+ static __unwrap(jsValue) {
37241
+ if (!(jsValue instanceof WasmTableCellStyle)) {
37242
+ return 0;
37243
+ }
37244
+ return jsValue.__destroy_into_raw();
37245
+ }
37246
+ __destroy_into_raw() {
37247
+ const ptr = this.__wbg_ptr;
37248
+ this.__wbg_ptr = 0;
37249
+ WasmTableCellStyleFinalization.unregister(this);
37250
+ return ptr;
37251
+ }
37252
+ free() {
37253
+ const ptr = this.__destroy_into_raw();
37254
+ wasm.__wbg_wasmtablecellstyle_free(ptr, 0);
37255
+ }
37256
+ /**
37257
+ * @returns {number}
37258
+ */
37259
+ get col() {
37260
+ const ret = wasm.wasmtablecellstyle_col(this.__wbg_ptr);
37261
+ return ret >>> 0;
37262
+ }
37263
+ /**
37264
+ * @returns {WasmTableCellStyle}
37265
+ */
37266
+ static default() {
37267
+ const ret = wasm.wasmtablecellstyle_default();
37268
+ return WasmTableCellStyle.__wrap(ret);
37269
+ }
37270
+ /**
37271
+ * @returns {number | undefined}
37272
+ */
37273
+ get headingLevel() {
37274
+ const ret = wasm.wasmtablecellstyle_headingLevel(this.__wbg_ptr);
37275
+ return ret === 0xFFFFFF ? undefined : ret;
37276
+ }
37277
+ /**
37278
+ * @param {number | null} [row]
37279
+ * @param {number | null} [col]
37280
+ * @param {number | null} [headingLevel]
37281
+ * @param {string | null} [styleName]
37282
+ */
37283
+ constructor(row, col, headingLevel, styleName) {
37284
+ var ptr0 = isLikeNone(styleName) ? 0 : passStringToWasm0(styleName, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
37285
+ var len0 = WASM_VECTOR_LEN;
37286
+ const ret = wasm.wasmtablecellstyle_new(isLikeNone(row) ? Number.MAX_SAFE_INTEGER : (row) >>> 0, isLikeNone(col) ? Number.MAX_SAFE_INTEGER : (col) >>> 0, isLikeNone(headingLevel) ? 0xFFFFFF : headingLevel, ptr0, len0);
37287
+ this.__wbg_ptr = ret;
37288
+ WasmTableCellStyleFinalization.register(this, this.__wbg_ptr, this);
37289
+ return this;
37290
+ }
37291
+ /**
37292
+ * @returns {number}
37293
+ */
37294
+ get row() {
37295
+ const ret = wasm.wasmtablecellstyle_row(this.__wbg_ptr);
37296
+ return ret >>> 0;
37297
+ }
37298
+ /**
37299
+ * @param {number} value
37300
+ */
37301
+ set col(value) {
37302
+ wasm.wasmtablecellstyle_set_col(this.__wbg_ptr, value);
37303
+ }
37304
+ /**
37305
+ * @param {number | null} [value]
37306
+ */
37307
+ set headingLevel(value) {
37308
+ wasm.wasmtablecellstyle_set_headingLevel(this.__wbg_ptr, isLikeNone(value) ? 0xFFFFFF : value);
37309
+ }
37310
+ /**
37311
+ * @param {number} value
37312
+ */
37313
+ set row(value) {
37314
+ wasm.wasmtablecellstyle_set_row(this.__wbg_ptr, value);
37315
+ }
37316
+ /**
37317
+ * @param {string | null} [value]
37318
+ */
37319
+ set styleName(value) {
37320
+ var ptr0 = isLikeNone(value) ? 0 : passStringToWasm0(value, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
37321
+ var len0 = WASM_VECTOR_LEN;
37322
+ wasm.wasmtablecellstyle_set_styleName(this.__wbg_ptr, ptr0, len0);
37323
+ }
37324
+ /**
37325
+ * @returns {string | undefined}
37326
+ */
37327
+ get styleName() {
37328
+ const ret = wasm.wasmtablecellstyle_styleName(this.__wbg_ptr);
37329
+ let v1;
37330
+ if (ret[0] !== 0) {
37331
+ v1 = getStringFromWasm0(ret[0], ret[1]);
37332
+ wasm.__wbindgen_free_command_export(ret[0], ret[1] * 1, 1);
37333
+ }
37334
+ return v1;
37335
+ }
37336
+ }
37337
+ if (Symbol.dispose) WasmTableCellStyle.prototype[Symbol.dispose] = WasmTableCellStyle.prototype.free;
37338
+
37170
37339
  /**
37171
37340
  * Controls how markdown tables are handled when they exceed the chunk size limit.
37172
37341
  *
@@ -37391,7 +37560,6 @@ export class WasmTesseractConfig {
37391
37560
  }
37392
37561
  /**
37393
37562
  * @param {string[] | null} [language]
37394
- * @param {number | null} [psm]
37395
37563
  * @param {string | null} [outputFormat]
37396
37564
  * @param {number | null} [oem]
37397
37565
  * @param {number | null} [minConfidence]
@@ -37410,9 +37578,10 @@ export class WasmTesseractConfig {
37410
37578
  * @param {boolean | null} [tesseditUsePrimaryParamsModel]
37411
37579
  * @param {boolean | null} [textordSpaceSizeIsVariable]
37412
37580
  * @param {boolean | null} [thresholdingMethod]
37581
+ * @param {number | null} [psm]
37413
37582
  * @param {WasmImagePreprocessingConfig | null} [preprocessing]
37414
37583
  */
37415
- constructor(language, psm, outputFormat, oem, minConfidence, enableTableDetection, tableMinConfidence, tableColumnThreshold, tableRowThresholdRatio, useCache, classifyUsePreAdaptedTemplates, languageModelNgramOn, tesseditDontBlkrejGoodWds, tesseditDontRowrejGoodWds, tesseditEnableDictCorrection, tesseditCharWhitelist, tesseditCharBlacklist, tesseditUsePrimaryParamsModel, textordSpaceSizeIsVariable, thresholdingMethod, preprocessing) {
37584
+ constructor(language, outputFormat, oem, minConfidence, enableTableDetection, tableMinConfidence, tableColumnThreshold, tableRowThresholdRatio, useCache, classifyUsePreAdaptedTemplates, languageModelNgramOn, tesseditDontBlkrejGoodWds, tesseditDontRowrejGoodWds, tesseditEnableDictCorrection, tesseditCharWhitelist, tesseditCharBlacklist, tesseditUsePrimaryParamsModel, textordSpaceSizeIsVariable, thresholdingMethod, psm, preprocessing) {
37416
37585
  var ptr0 = isLikeNone(language) ? 0 : passArrayJsValueToWasm0(language, wasm.__wbindgen_malloc_command_export);
37417
37586
  var len0 = WASM_VECTOR_LEN;
37418
37587
  var ptr1 = isLikeNone(outputFormat) ? 0 : passStringToWasm0(outputFormat, wasm.__wbindgen_malloc_command_export, wasm.__wbindgen_realloc_command_export);
@@ -37426,7 +37595,7 @@ export class WasmTesseractConfig {
37426
37595
  _assertClass(preprocessing, WasmImagePreprocessingConfig);
37427
37596
  ptr4 = preprocessing.__destroy_into_raw();
37428
37597
  }
37429
- const ret = wasm.wasmtesseractconfig_new(ptr0, len0, isLikeNone(psm) ? Number.MAX_SAFE_INTEGER : (psm) >> 0, ptr1, len1, isLikeNone(oem) ? Number.MAX_SAFE_INTEGER : (oem) >> 0, !isLikeNone(minConfidence), isLikeNone(minConfidence) ? 0 : minConfidence, isLikeNone(enableTableDetection) ? 0xFFFFFF : enableTableDetection ? 1 : 0, !isLikeNone(tableMinConfidence), isLikeNone(tableMinConfidence) ? 0 : tableMinConfidence, isLikeNone(tableColumnThreshold) ? Number.MAX_SAFE_INTEGER : (tableColumnThreshold) >> 0, !isLikeNone(tableRowThresholdRatio), isLikeNone(tableRowThresholdRatio) ? 0 : tableRowThresholdRatio, isLikeNone(useCache) ? 0xFFFFFF : useCache ? 1 : 0, isLikeNone(classifyUsePreAdaptedTemplates) ? 0xFFFFFF : classifyUsePreAdaptedTemplates ? 1 : 0, isLikeNone(languageModelNgramOn) ? 0xFFFFFF : languageModelNgramOn ? 1 : 0, isLikeNone(tesseditDontBlkrejGoodWds) ? 0xFFFFFF : tesseditDontBlkrejGoodWds ? 1 : 0, isLikeNone(tesseditDontRowrejGoodWds) ? 0xFFFFFF : tesseditDontRowrejGoodWds ? 1 : 0, isLikeNone(tesseditEnableDictCorrection) ? 0xFFFFFF : tesseditEnableDictCorrection ? 1 : 0, ptr2, len2, ptr3, len3, isLikeNone(tesseditUsePrimaryParamsModel) ? 0xFFFFFF : tesseditUsePrimaryParamsModel ? 1 : 0, isLikeNone(textordSpaceSizeIsVariable) ? 0xFFFFFF : textordSpaceSizeIsVariable ? 1 : 0, isLikeNone(thresholdingMethod) ? 0xFFFFFF : thresholdingMethod ? 1 : 0, ptr4);
37598
+ const ret = wasm.wasmtesseractconfig_new(ptr0, len0, ptr1, len1, isLikeNone(oem) ? Number.MAX_SAFE_INTEGER : (oem) >> 0, !isLikeNone(minConfidence), isLikeNone(minConfidence) ? 0 : minConfidence, isLikeNone(enableTableDetection) ? 0xFFFFFF : enableTableDetection ? 1 : 0, !isLikeNone(tableMinConfidence), isLikeNone(tableMinConfidence) ? 0 : tableMinConfidence, isLikeNone(tableColumnThreshold) ? Number.MAX_SAFE_INTEGER : (tableColumnThreshold) >> 0, !isLikeNone(tableRowThresholdRatio), isLikeNone(tableRowThresholdRatio) ? 0 : tableRowThresholdRatio, isLikeNone(useCache) ? 0xFFFFFF : useCache ? 1 : 0, isLikeNone(classifyUsePreAdaptedTemplates) ? 0xFFFFFF : classifyUsePreAdaptedTemplates ? 1 : 0, isLikeNone(languageModelNgramOn) ? 0xFFFFFF : languageModelNgramOn ? 1 : 0, isLikeNone(tesseditDontBlkrejGoodWds) ? 0xFFFFFF : tesseditDontBlkrejGoodWds ? 1 : 0, isLikeNone(tesseditDontRowrejGoodWds) ? 0xFFFFFF : tesseditDontRowrejGoodWds ? 1 : 0, isLikeNone(tesseditEnableDictCorrection) ? 0xFFFFFF : tesseditEnableDictCorrection ? 1 : 0, ptr2, len2, ptr3, len3, isLikeNone(tesseditUsePrimaryParamsModel) ? 0xFFFFFF : tesseditUsePrimaryParamsModel ? 1 : 0, isLikeNone(textordSpaceSizeIsVariable) ? 0xFFFFFF : textordSpaceSizeIsVariable ? 1 : 0, isLikeNone(thresholdingMethod) ? 0xFFFFFF : thresholdingMethod ? 1 : 0, isLikeNone(psm) ? Number.MAX_SAFE_INTEGER : (psm) >> 0, ptr4);
37430
37599
  this.__wbg_ptr = ret;
37431
37600
  WasmTesseractConfigFinalization.register(this, this.__wbg_ptr, this);
37432
37601
  return this;
@@ -37461,11 +37630,11 @@ export class WasmTesseractConfig {
37461
37630
  return ret === 0 ? undefined : WasmImagePreprocessingConfig.__wrap(ret);
37462
37631
  }
37463
37632
  /**
37464
- * @returns {number}
37633
+ * @returns {number | undefined}
37465
37634
  */
37466
37635
  get psm() {
37467
37636
  const ret = wasm.wasmtesseractconfig_psm(this.__wbg_ptr);
37468
- return ret;
37637
+ return ret === Number.MAX_SAFE_INTEGER ? undefined : ret;
37469
37638
  }
37470
37639
  /**
37471
37640
  * @param {boolean} value
@@ -37525,10 +37694,10 @@ export class WasmTesseractConfig {
37525
37694
  wasm.wasmtesseractconfig_set_preprocessing(this.__wbg_ptr, ptr0);
37526
37695
  }
37527
37696
  /**
37528
- * @param {number} value
37697
+ * @param {number | null} [value]
37529
37698
  */
37530
37699
  set psm(value) {
37531
- wasm.wasmtesseractconfig_set_psm(this.__wbg_ptr, value);
37700
+ wasm.wasmtesseractconfig_set_psm(this.__wbg_ptr, isLikeNone(value) ? Number.MAX_SAFE_INTEGER : (value) >> 0);
37532
37701
  }
37533
37702
  /**
37534
37703
  * @param {number} value
@@ -41175,7 +41344,7 @@ function __wbg_get_imports() {
41175
41344
  const ret = arg0.value;
41176
41345
  return ret;
41177
41346
  },
41178
- __wbg_warn_9707e4b551bb2ab8: function(arg0, arg1) {
41347
+ __wbg_warn_3f0e06662951a506: function(arg0, arg1) {
41179
41348
  console.warn(getStringFromWasm0(arg0, arg1));
41180
41349
  },
41181
41350
  __wbg_wasmarchiveentry_new: function(arg0) {
@@ -41718,6 +41887,14 @@ function __wbg_get_imports() {
41718
41887
  const ret = WasmTable.__unwrap(arg0);
41719
41888
  return ret;
41720
41889
  },
41890
+ __wbg_wasmtablecellstyle_new: function(arg0) {
41891
+ const ret = WasmTableCellStyle.__wrap(arg0);
41892
+ return ret;
41893
+ },
41894
+ __wbg_wasmtablecellstyle_unwrap: function(arg0) {
41895
+ const ret = WasmTableCellStyle.__unwrap(arg0);
41896
+ return ret;
41897
+ },
41721
41898
  __wbg_wasmtextannotation_new: function(arg0) {
41722
41899
  const ret = WasmTextAnnotation.__wrap(arg0);
41723
41900
  return ret;
@@ -41727,12 +41904,12 @@ function __wbg_get_imports() {
41727
41904
  return ret;
41728
41905
  },
41729
41906
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
41730
- // Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 1982, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
41907
+ // Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 1981, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
41731
41908
  const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h2bfd0fcd0dd2401b);
41732
41909
  return ret;
41733
41910
  },
41734
41911
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
41735
- // Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 4985, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
41912
+ // Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 4999, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
41736
41913
  const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__he3a7de6028a2faaa);
41737
41914
  return ret;
41738
41915
  },
@@ -42505,6 +42682,9 @@ const WasmTableFinalization = (typeof FinalizationRegistry === 'undefined')
42505
42682
  const WasmTableCellFinalization = (typeof FinalizationRegistry === 'undefined')
42506
42683
  ? { register: () => {}, unregister: () => {} }
42507
42684
  : new FinalizationRegistry(ptr => wasm.__wbg_wasmtablecell_free(ptr, 1));
42685
+ const WasmTableCellStyleFinalization = (typeof FinalizationRegistry === 'undefined')
42686
+ ? { register: () => {}, unregister: () => {} }
42687
+ : new FinalizationRegistry(ptr => wasm.__wbg_wasmtablecellstyle_free(ptr, 1));
42508
42688
  const WasmTableGridFinalization = (typeof FinalizationRegistry === 'undefined')
42509
42689
  ? { register: () => {}, unregister: () => {} }
42510
42690
  : new FinalizationRegistry(ptr => wasm.__wbg_wasmtablegrid_free(ptr, 1));
Binary file
@@ -202,6 +202,7 @@ export const __wbg_wasmsupportedformat_free: (a: number, b: number) => void;
202
202
  export const __wbg_wasmsvgoptions_free: (a: number, b: number) => void;
203
203
  export const __wbg_wasmtable_free: (a: number, b: number) => void;
204
204
  export const __wbg_wasmtablecell_free: (a: number, b: number) => void;
205
+ export const __wbg_wasmtablecellstyle_free: (a: number, b: number) => void;
205
206
  export const __wbg_wasmtablegrid_free: (a: number, b: number) => void;
206
207
  export const __wbg_wasmtesseractconfig_free: (a: number, b: number) => void;
207
208
  export const __wbg_wasmtextannotation_free: (a: number, b: number) => void;
@@ -1686,17 +1687,21 @@ export const wasmgridcell_col: (a: number) => number;
1686
1687
  export const wasmgridcell_colSpan: (a: number) => number;
1687
1688
  export const wasmgridcell_content: (a: number) => [number, number];
1688
1689
  export const wasmgridcell_default: () => number;
1690
+ export const wasmgridcell_headingLevel: (a: number) => number;
1689
1691
  export const wasmgridcell_isHeader: (a: number) => number;
1690
- export const wasmgridcell_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
1692
+ export const wasmgridcell_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => number;
1691
1693
  export const wasmgridcell_row: (a: number) => number;
1692
1694
  export const wasmgridcell_rowSpan: (a: number) => number;
1693
1695
  export const wasmgridcell_set_bbox: (a: number, b: number) => void;
1694
1696
  export const wasmgridcell_set_col: (a: number, b: number) => void;
1695
1697
  export const wasmgridcell_set_colSpan: (a: number, b: number) => void;
1696
1698
  export const wasmgridcell_set_content: (a: number, b: number, c: number) => void;
1699
+ export const wasmgridcell_set_headingLevel: (a: number, b: number) => void;
1697
1700
  export const wasmgridcell_set_isHeader: (a: number, b: number) => void;
1698
1701
  export const wasmgridcell_set_row: (a: number, b: number) => void;
1699
1702
  export const wasmgridcell_set_rowSpan: (a: number, b: number) => void;
1703
+ export const wasmgridcell_set_styleName: (a: number, b: number, c: number) => void;
1704
+ export const wasmgridcell_styleName: (a: number) => [number, number];
1700
1705
  export const wasmheadermetadata_default: () => number;
1701
1706
  export const wasmheadermetadata_depth: (a: number) => number;
1702
1707
  export const wasmheadermetadata_htmlOffset: (a: number) => number;
@@ -3195,13 +3200,15 @@ export const wasmsummarizationconfig_strategy: (a: number) => [number, number];
3195
3200
  export const wasmsvgoptions_default: () => number;
3196
3201
  export const wasmsvgoptions_new: (a: number, b: number) => number;
3197
3202
  export const wasmtable_boundingBox: (a: number) => number;
3203
+ export const wasmtable_cellStyles: (a: number) => [number, number];
3198
3204
  export const wasmtable_cells: (a: number) => any;
3199
3205
  export const wasmtable_columns: (a: number) => [number, number];
3200
3206
  export const wasmtable_default: () => number;
3201
3207
  export const wasmtable_markdown: (a: number) => [number, number];
3202
- export const wasmtable_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
3208
+ export const wasmtable_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => number;
3203
3209
  export const wasmtable_pageNumber: (a: number) => number;
3204
3210
  export const wasmtable_set_boundingBox: (a: number, b: number) => void;
3211
+ export const wasmtable_set_cellStyles: (a: number, b: number, c: number) => void;
3205
3212
  export const wasmtable_set_cells: (a: number, b: any) => void;
3206
3213
  export const wasmtable_set_columns: (a: number, b: number, c: number) => void;
3207
3214
  export const wasmtable_set_markdown: (a: number, b: number, c: number) => void;
@@ -3212,6 +3219,16 @@ export const wasmtablecell_colSpan: (a: number) => number;
3212
3219
  export const wasmtablecell_default: () => number;
3213
3220
  export const wasmtablecell_new: (a: number, b: number, c: number, d: number, e: number) => number;
3214
3221
  export const wasmtablecell_set_colSpan: (a: number, b: number) => void;
3222
+ export const wasmtablecellstyle_col: (a: number) => number;
3223
+ export const wasmtablecellstyle_default: () => number;
3224
+ export const wasmtablecellstyle_headingLevel: (a: number) => number;
3225
+ export const wasmtablecellstyle_new: (a: number, b: number, c: number, d: number, e: number) => number;
3226
+ export const wasmtablecellstyle_row: (a: number) => number;
3227
+ export const wasmtablecellstyle_set_col: (a: number, b: number) => void;
3228
+ export const wasmtablecellstyle_set_headingLevel: (a: number, b: number) => void;
3229
+ export const wasmtablecellstyle_set_row: (a: number, b: number) => void;
3230
+ export const wasmtablecellstyle_set_styleName: (a: number, b: number, c: number) => void;
3231
+ export const wasmtablecellstyle_styleName: (a: number) => [number, number];
3215
3232
  export const wasmtablegrid_cells: (a: number) => [number, number];
3216
3233
  export const wasmtablegrid_cols: (a: number) => number;
3217
3234
  export const wasmtablegrid_default: () => number;
@@ -3489,9 +3506,9 @@ export const wasmpixeldimensions_default: () => number;
3489
3506
  export const wasmorientationresult_new: (a: number, b: number) => number;
3490
3507
  export const wasmocrpoint_new: (a: number, b: number) => number;
3491
3508
  export const wasmpixeldimensions_new: (a: number, b: number) => number;
3492
- export const wasmhostmatcher_default: () => number;
3493
3509
  export const wasmpiicategory_default: () => number;
3494
3510
  export const wasmentitycategory_default: () => number;
3511
+ export const wasmhostmatcher_default: () => number;
3495
3512
  export const wasmrevisionanchor_default: () => number;
3496
3513
  export const wasmdjotlink_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => number;
3497
3514
  export const wasmdjotlink_default: () => number;
@@ -3514,12 +3531,12 @@ export const __wbg_wasmhostmatcher_free: (a: number, b: number) => void;
3514
3531
  export const __wbg_wasmimageoutputformat_free: (a: number, b: number) => void;
3515
3532
  export const __wbg_wasmvlmfallbackpolicy_free: (a: number, b: number) => void;
3516
3533
  export const wasmgeojsonextractionconfig_set_includeFullCoordinates: (a: number, b: number) => void;
3534
+ export const wasmemailconfig_set_msgFallbackCodepage: (a: number, b: number) => void;
3535
+ export const wasmemailconfig_msgFallbackCodepage: (a: number) => number;
3517
3536
  export const __wbg_wasmocrstrategy_free: (a: number, b: number) => void;
3518
3537
  export const wasmyakeparams_windowSize: (a: number) => number;
3519
3538
  export const wasmyakeparams_set_windowSize: (a: number, b: number) => void;
3520
3539
  export const __wbg_wasmentitycategory_free: (a: number, b: number) => void;
3521
- export const wasmemailconfig_set_msgFallbackCodepage: (a: number, b: number) => void;
3522
- export const wasmemailconfig_msgFallbackCodepage: (a: number) => number;
3523
3540
  export const wasmvlmfallbackpolicy_default: () => number;
3524
3541
  export const wasmocrstrategy_default: () => number;
3525
3542
  export const wasmpagerange_start: (a: number) => number;
@@ -3621,156 +3638,130 @@ export const wasmpagesignals_set_pageNumber: (a: number, b: number) => void;
3621
3638
  export const wasmpagesignals_set_startsWithLetterheadLike: (a: number, b: number) => void;
3622
3639
  export const wasmpagesignals_set_textExcerpt: (a: number, b: number, c: number) => void;
3623
3640
  export const wasmerrormetadata_errorType: (a: number) => [number, number];
3624
- export const wasmpropertychange_set_name: (a: number, b: number, c: number) => void;
3625
- export const wasmpropertychange_name: (a: number) => [number, number];
3626
- export const wasmfootnotedefinition_set_label: (a: number, b: number, c: number) => void;
3627
- export const wasmfootnotedefinition_set_content: (a: number, b: number, c: number) => void;
3628
- export const wasmfootnotedefinition_label: (a: number) => [number, number];
3629
- export const wasmpageboundary_set_pageNumber: (a: number, b: number) => void;
3630
- export const wasmpageboundary_set_byteStart: (a: number, b: number) => void;
3631
- export const wasmpageboundary_set_byteEnd: (a: number, b: number) => void;
3632
- export const wasmpageboundary_byteStart: (a: number) => number;
3633
- export const wasmformula_set_page: (a: number, b: number) => void;
3634
- export const wasmformula_set_latex: (a: number, b: number, c: number) => void;
3635
- export const wasmredactionterm_value: (a: number) => [number, number];
3636
- export const __wbg_wasmocrelementconfig_free: (a: number, b: number) => void;
3637
- export const wasmredactionpattern_pattern: (a: number) => [number, number];
3638
- export const __wbg_wasmredactionterm_free: (a: number, b: number) => void;
3639
- export const wasmtablecell_set_rowSpan: (a: number, b: number) => void;
3640
- export const wasmtablecell_set_isHeader: (a: number, b: number) => void;
3641
- export const wasmtablecell_set_content: (a: number, b: number, c: number) => void;
3642
- export const wasmtablecell_isHeader: (a: number) => number;
3643
- export const wasmtablecell_content: (a: number) => [number, number];
3644
- export const wasmpropertychange_set_to: (a: number, b: number, c: number) => void;
3645
- export const wasmpropertychange_set_from: (a: number, b: number, c: number) => void;
3646
- export const wasmpropertychange_to: (a: number) => [number, number];
3647
- export const wasmpropertychange_from: (a: number) => [number, number];
3648
- export const wasmtablecell_rowSpan: (a: number) => number;
3649
- export const __wbg_wasmlayoutdetectionconfig_free: (a: number, b: number) => void;
3641
+ export const wasmdjotlink_attributes: (a: number) => number;
3650
3642
  export const wasmlayoutregion_className: (a: number) => [number, number];
3651
- export const __wbg_wasmlayoutregion_free: (a: number, b: number) => void;
3652
- export const wasmpagesignals_pageNumber: (a: number) => number;
3653
3643
  export const wasmpagedimensions_set_height: (a: number, b: number) => void;
3654
3644
  export const wasmlanguagedetectionconfig_set_minConfidence: (a: number, b: number) => void;
3645
+ export const wasmpagedimensions_height: (a: number) => number;
3655
3646
  export const wasmlanguagedetectionconfig_minConfidence: (a: number) => number;
3656
- export const wasmsparseembeddingconfig_set_model: (a: number, b: any) => void;
3657
- export const wasmsparseembeddingconfig_set_maxLength: (a: number, b: number) => void;
3658
- export const wasmsparseembeddingconfig_set_maxEmbedDurationSecs: (a: number, b: number, c: bigint) => void;
3659
- export const wasmsparseembeddingconfig_set_cacheDir: (a: number, b: number, c: number) => void;
3660
- export const wasmsparseembeddingconfig_set_batchSize: (a: number, b: number) => void;
3661
- export const wasmsparseembeddingconfig_set_acceleration: (a: number, b: number) => void;
3662
- export const wasmsparseembeddingconfig_model: (a: number) => any;
3663
- export const wasmsparseembeddingconfig_maxLength: (a: number) => number;
3664
- export const wasmsparseembeddingconfig_maxEmbedDurationSecs: (a: number) => [number, bigint];
3665
- export const wasmsparseembeddingconfig_cacheDir: (a: number) => [number, number];
3666
- export const wasmsparseembeddingconfig_batchSize: (a: number) => number;
3667
- export const wasmsparseembeddingconfig_acceleration: (a: number) => number;
3668
- export const __wbg_wasmsparseembeddingconfig_free: (a: number, b: number) => void;
3669
- export const wasmpresetsample_outputPath: (a: number) => [number, number];
3670
- export const __wbg_wasmpresetsample_free: (a: number, b: number) => void;
3647
+ export const __wbg_wasmpagedimensions_free: (a: number, b: number) => void;
3648
+ export const wasmpagerange_end: (a: number) => number;
3649
+ export const __wbg_wasmocrpoint_free: (a: number, b: number) => void;
3650
+ export const __wbg_wasmngramrange_free: (a: number, b: number) => void;
3651
+ export const wasmpresentationhyperlink_set_label: (a: number, b: number, c: number) => void;
3652
+ export const __wbg_wasmemailconfig_free: (a: number, b: number) => void;
3653
+ export const __wbg_wasmtokenreductionoptions_free: (a: number, b: number) => void;
3654
+ export const __wbg_wasmlayoutdetectionconfig_free: (a: number, b: number) => void;
3655
+ export const __wbg_wasmlayoutregion_free: (a: number, b: number) => void;
3656
+ export const wasmpageconfig_set_markerFormat: (a: number, b: number, c: number) => void;
3657
+ export const wasmtokenreductionoptions_set_preserveImportantWords: (a: number, b: number) => void;
3658
+ export const wasmpageconfig_markerFormat: (a: number) => [number, number];
3659
+ export const wasmtokenreductionoptions_preserveImportantWords: (a: number) => number;
3660
+ export const __wbg_wasmpageconfig_free: (a: number, b: number) => void;
3671
3661
  export const wasmdjotlink_set_url: (a: number, b: number, c: number) => void;
3662
+ export const wasmdjotlink_set_title: (a: number, b: number, c: number) => void;
3672
3663
  export const wasmdjotlink_set_text: (a: number, b: number, c: number) => void;
3673
3664
  export const wasmdjotlink_set_attributes: (a: number, b: number) => void;
3674
3665
  export const wasmdjotlink_url: (a: number) => [number, number];
3675
- export const wasmdjotlink_attributes: (a: number) => number;
3676
- export const wasmmultidocthresholds_bigramOverlapMin: (a: number) => number;
3677
- export const wasmpixeldimensions_height: (a: number) => number;
3678
- export const __wbg_wasmpixeldimensions_free: (a: number, b: number) => void;
3679
- export const wasmmarkdowncodeblock_code: (a: number) => [number, number];
3680
- export const __wbg_wasmmarkdowncodeblock_free: (a: number, b: number) => void;
3681
- export const wasmformula_latex: (a: number) => [number, number];
3682
- export const wasmocrstrategy_set_mode: (a: number, b: number, c: number) => void;
3683
- export const wasmocrstrategy_minConfidence: (a: number) => [number, number];
3684
- export const wasmdbffieldinfo_name: (a: number) => [number, number];
3685
- export const wasmerrormetadata_message: (a: number) => [number, number];
3686
- export const __wbg_wasmerrormetadata_free: (a: number, b: number) => void;
3687
- export const wasmpagerange_end: (a: number) => number;
3688
- export const __wbg_wasmocrpoint_free: (a: number, b: number) => void;
3689
- export const wasmpageboundary_byteEnd: (a: number) => number;
3690
- export const wasmpageboundary_pageNumber: (a: number) => number;
3691
- export const __wbg_wasmpageboundary_free: (a: number, b: number) => void;
3692
- export const __wbg_wasmngramrange_free: (a: number, b: number) => void;
3666
+ export const wasmdjotlink_title: (a: number) => [number, number];
3667
+ export const wasmdjotlink_text: (a: number) => [number, number];
3668
+ export const __wbg_wasmdjotlink_free: (a: number, b: number) => void;
3693
3669
  export const wasmocrpoint_set_y: (a: number, b: number) => void;
3694
3670
  export const wasmocrpoint_set_x: (a: number, b: number) => void;
3695
3671
  export const wasmocrpoint_y: (a: number) => number;
3696
3672
  export const wasmocrpoint_x: (a: number) => number;
3697
3673
  export const __wbg_wasmpagerange_free: (a: number, b: number) => void;
3698
- export const __wbg_wasmdocumentrelationship_free: (a: number, b: number) => void;
3699
- export const wasmdocumentrelationship_target: (a: number) => number;
3700
- export const wasmqrboundingbox_y: (a: number) => number;
3701
- export const wasmqrboundingbox_width: (a: number) => number;
3702
- export const wasmqrboundingbox_height: (a: number) => number;
3703
- export const __wbg_wasmqrboundingbox_free: (a: number, b: number) => void;
3704
- export const __wbg_wasmlayoutdetection_free: (a: number, b: number) => void;
3705
- export const wasmdiffline_set_kind: (a: number, b: number, c: number) => void;
3706
- export const wasmdiffline_set_0: (a: number, b: number, c: number) => void;
3707
- export const wasmdiffline_kind: (a: number) => [number, number];
3708
- export const wasmpresentationhyperlink_set_label: (a: number, b: number, c: number) => void;
3674
+ export const wasmocrrotation_set_confidence: (a: number, b: number, c: number) => void;
3675
+ export const wasmocrrotation_confidence: (a: number) => [number, number];
3676
+ export const wasmocrrotation_angleDegrees: (a: number) => number;
3677
+ export const __wbg_wasmocrrotation_free: (a: number, b: number) => void;
3678
+ export const wasmpageboundary_set_pageNumber: (a: number, b: number) => void;
3679
+ export const wasmpageboundary_set_byteStart: (a: number, b: number) => void;
3680
+ export const wasmpageboundary_set_byteEnd: (a: number, b: number) => void;
3681
+ export const wasmpageboundary_byteStart: (a: number) => number;
3682
+ export const wasmorientationresult_confidence: (a: number) => number;
3683
+ export const wasmentitycategory_set_0: (a: number, b: number, c: number) => void;
3709
3684
  export const wasmpresentationhyperlink_label: (a: number) => [number, number];
3710
- export const __wbg_wasmpagesignals_free: (a: number, b: number) => void;
3711
- export const wasmdbffieldinfo_set_name: (a: number, b: number, c: number) => void;
3712
- export const wasmdbffieldinfo_set_fieldType: (a: number, b: number, c: number) => void;
3713
- export const wasmdbffieldinfo_fieldType: (a: number) => [number, number];
3714
- export const __wbg_wasmdbffieldinfo_free: (a: number, b: number) => void;
3715
- export const wasmfootnotedefinition_content: (a: number) => [number, number];
3716
- export const __wbg_wasmtokenreductionoptions_free: (a: number, b: number) => void;
3685
+ export const __wbg_wasmlayoutdetection_free: (a: number, b: number) => void;
3686
+ export const wasmocrstrategy_set_mode: (a: number, b: number, c: number) => void;
3687
+ export const wasmpageocrconfidence_set_score: (a: number, b: number, c: number) => void;
3688
+ export const wasmpageocrconfidence_backend: (a: number) => [number, number];
3689
+ export const wasmocrstrategy_minConfidence: (a: number) => [number, number];
3690
+ export const __wbg_wasmpageboundary_free: (a: number, b: number) => void;
3691
+ export const wasmpageboundary_byteEnd: (a: number) => number;
3692
+ export const wasmpreprocessingoptions_enabled: (a: number) => number;
3693
+ export const wasmentitycategory_0: (a: number) => [number, number];
3694
+ export const __wbg_wasmpresentationhyperlink_free: (a: number, b: number) => void;
3695
+ export const wasmdocumentrelationship_target: (a: number) => number;
3696
+ export const wasmpageboundary_pageNumber: (a: number) => number;
3697
+ export const __wbg_wasmdocumentrelationship_free: (a: number, b: number) => void;
3717
3698
  export const wasmproxyconfig_set_username: (a: number, b: number, c: number) => void;
3718
3699
  export const wasmproxyconfig_set_password: (a: number, b: number, c: number) => void;
3719
3700
  export const wasmproxyconfig_username: (a: number) => [number, number];
3720
3701
  export const wasmproxyconfig_password: (a: number) => [number, number];
3721
- export const __wbg_wasmproxyconfig_free: (a: number, b: number) => void;
3722
- export const wasmhostmatcher_set_value: (a: number, b: number, c: number) => void;
3723
- export const wasmhostmatcher_value: (a: number) => [number, number];
3724
- export const __wbg_wasmredactionpattern_free: (a: number, b: number) => void;
3702
+ export const wasmredactionpattern_pattern: (a: number) => [number, number];
3703
+ export const wasmngramrange_max: (a: number) => number;
3704
+ export const __wbg_wasmimagedimensions_free: (a: number, b: number) => void;
3705
+ export const wasmformula_set_page: (a: number, b: number) => void;
3706
+ export const wasmformula_set_latex: (a: number, b: number, c: number) => void;
3707
+ export const wasmformula_latex: (a: number) => [number, number];
3708
+ export const wasmprocessingwarning_message: (a: number) => [number, number];
3709
+ export const __wbg_wasmprocessingwarning_free: (a: number, b: number) => void;
3710
+ export const wasmdbffieldinfo_set_name: (a: number, b: number, c: number) => void;
3711
+ export const wasmdbffieldinfo_set_fieldType: (a: number, b: number, c: number) => void;
3725
3712
  export const wasmkeyvalueattribute_value: (a: number) => [number, number];
3726
3713
  export const __wbg_wasmkeyvalueattribute_free: (a: number, b: number) => void;
3714
+ export const wasmdbffieldinfo_name: (a: number) => [number, number];
3715
+ export const wasmdbffieldinfo_fieldType: (a: number) => [number, number];
3716
+ export const __wbg_wasmdbffieldinfo_free: (a: number, b: number) => void;
3717
+ export const wasmtablecell_set_rowSpan: (a: number, b: number) => void;
3718
+ export const wasmtablecell_set_isHeader: (a: number, b: number) => void;
3719
+ export const wasmtablecell_set_content: (a: number, b: number, c: number) => void;
3720
+ export const wasmtablecell_rowSpan: (a: number) => number;
3721
+ export const wasmtablecell_isHeader: (a: number) => number;
3722
+ export const wasmtablecell_content: (a: number) => [number, number];
3723
+ export const __wbg_wasmqrboundingbox_free: (a: number, b: number) => void;
3724
+ export const wasmredactionterm_value: (a: number) => [number, number];
3725
+ export const __wbg_wasmredactionterm_free: (a: number, b: number) => void;
3726
+ export const wasmpixeldimensions_height: (a: number) => number;
3727
+ export const __wbg_wasmpixeldimensions_free: (a: number, b: number) => void;
3728
+ export const wasmsupportedformat_mimeType: (a: number) => [number, number];
3727
3729
  export const wasmhierarchicalboundingbox_set_bottom: (a: number, b: number) => void;
3728
3730
  export const wasmhierarchicalboundingbox_set_top: (a: number, b: number) => void;
3729
3731
  export const wasmdocumentboundary_set_confidence: (a: number, b: number) => void;
3730
3732
  export const wasmhierarchicalboundingbox_set_left: (a: number, b: number) => void;
3731
- export const wasmhierarchicalboundingbox_left: (a: number) => number;
3732
- export const __wbg_wasmocrtableboundingbox_free: (a: number, b: number) => void;
3733
- export const wasmocrrotation_set_confidence: (a: number, b: number, c: number) => void;
3734
- export const wasmocrrotation_angleDegrees: (a: number) => number;
3735
- export const wasmocrrotation_confidence: (a: number) => [number, number];
3736
- export const __wbg_wasmocrrotation_free: (a: number, b: number) => void;
3733
+ export const wasmhierarchicalboundingbox_bottom: (a: number) => number;
3737
3734
  export const wasmhierarchicalboundingbox_top: (a: number) => number;
3738
3735
  export const wasmhierarchicalboundingbox_right: (a: number) => number;
3739
- export const wasmhierarchicalboundingbox_bottom: (a: number) => number;
3736
+ export const wasmhierarchicalboundingbox_left: (a: number) => number;
3740
3737
  export const __wbg_wasmhierarchicalboundingbox_free: (a: number, b: number) => void;
3741
- export const wasmpageconfig_set_markerFormat: (a: number, b: number, c: number) => void;
3742
- export const wasmtokenreductionoptions_set_preserveImportantWords: (a: number, b: number) => void;
3743
- export const wasmpageconfig_markerFormat: (a: number) => [number, number];
3744
- export const wasmtokenreductionoptions_preserveImportantWords: (a: number) => number;
3745
- export const __wbg_wasmpageconfig_free: (a: number, b: number) => void;
3746
- export const wasmocrtableboundingbox_top: (a: number) => number;
3747
- export const wasmdocumentboundary_confidence: (a: number) => number;
3748
- export const wasmsupportedformat_mimeType: (a: number) => [number, number];
3749
- export const wasmocrstrategy_set_minConfidence: (a: number, b: number, c: number) => void;
3750
- export const wasmocrstrategy_mode: (a: number) => [number, number];
3751
- export const wasmvlmfallbackpolicy_mode: (a: number) => [number, number];
3752
- export const wasmvlmfallbackpolicy_set_qualityThreshold: (a: number, b: number, c: number) => void;
3753
- export const wasmprocessingwarning_message: (a: number) => [number, number];
3754
- export const __wbg_wasmprocessingwarning_free: (a: number, b: number) => void;
3755
- export const wasmdjotlink_set_title: (a: number, b: number, c: number) => void;
3756
- export const wasmdjotlink_title: (a: number) => [number, number];
3757
- export const wasmdjotlink_text: (a: number) => [number, number];
3758
- export const __wbg_wasmdjotlink_free: (a: number, b: number) => void;
3759
- export const wasmentitycategory_set_0: (a: number, b: number, c: number) => void;
3760
- export const wasmentitycategory_0: (a: number) => [number, number];
3761
- export const wasmpagedimensions_height: (a: number) => number;
3762
- export const __wbg_wasmpagedimensions_free: (a: number, b: number) => void;
3763
- export const wasmpreprocessingoptions_enabled: (a: number) => number;
3764
- export const wasmrakeparams_maxWordsPerPhrase: (a: number) => number;
3765
- export const __wbg_wasmrakeparams_free: (a: number, b: number) => void;
3766
- export const wasmpageocrconfidence_backend: (a: number) => [number, number];
3767
- export const wasmpageocrconfidence_set_score: (a: number, b: number, c: number) => void;
3768
- export const wasmngramrange_max: (a: number) => number;
3769
- export const __wbg_wasmimagedimensions_free: (a: number, b: number) => void;
3770
3738
  export const wasmpiicategory_set_0: (a: number, b: number, c: number) => void;
3771
3739
  export const wasmpiicategory_0: (a: number) => [number, number];
3772
- export const wasmmarkdownlink_url: (a: number) => [number, number];
3773
- export const __wbg_wasmmarkdownlink_free: (a: number, b: number) => void;
3740
+ export const wasmhostmatcher_set_value: (a: number, b: number, c: number) => void;
3741
+ export const wasmhostmatcher_value: (a: number) => [number, number];
3742
+ export const __wbg_wasmproxyconfig_free: (a: number, b: number) => void;
3743
+ export const wasmpagesignals_pageNumber: (a: number) => number;
3744
+ export const __wbg_wasmpagesignals_free: (a: number, b: number) => void;
3745
+ export const wasmfootnotedefinition_set_label: (a: number, b: number, c: number) => void;
3746
+ export const wasmfootnotedefinition_set_content: (a: number, b: number, c: number) => void;
3747
+ export const wasmfootnotedefinition_label: (a: number) => [number, number];
3748
+ export const wasmfootnotedefinition_content: (a: number) => [number, number];
3749
+ export const __wbg_wasmredactionpattern_free: (a: number, b: number) => void;
3750
+ export const wasmsparseembeddingconfig_set_model: (a: number, b: any) => void;
3751
+ export const wasmsparseembeddingconfig_set_maxLength: (a: number, b: number) => void;
3752
+ export const wasmsparseembeddingconfig_set_maxEmbedDurationSecs: (a: number, b: number, c: bigint) => void;
3753
+ export const wasmsparseembeddingconfig_set_cacheDir: (a: number, b: number, c: number) => void;
3754
+ export const wasmsparseembeddingconfig_set_batchSize: (a: number, b: number) => void;
3755
+ export const wasmsparseembeddingconfig_set_acceleration: (a: number, b: number) => void;
3756
+ export const wasmsparseembeddingconfig_model: (a: number) => any;
3757
+ export const wasmsparseembeddingconfig_maxLength: (a: number) => number;
3758
+ export const wasmsparseembeddingconfig_maxEmbedDurationSecs: (a: number) => [number, bigint];
3759
+ export const wasmsparseembeddingconfig_cacheDir: (a: number) => [number, number];
3760
+ export const wasmsparseembeddingconfig_batchSize: (a: number) => number;
3761
+ export const wasmsparseembeddingconfig_acceleration: (a: number) => number;
3762
+ export const __wbg_wasmsparseembeddingconfig_free: (a: number, b: number) => void;
3763
+ export const wasmpresetsample_outputPath: (a: number) => [number, number];
3764
+ export const __wbg_wasmpresetsample_free: (a: number, b: number) => void;
3774
3765
  export const wasmrerankerconfig_set_topK: (a: number, b: number) => void;
3775
3766
  export const wasmrerankerconfig_set_showDownloadProgress: (a: number, b: number) => void;
3776
3767
  export const wasmrerankerconfig_set_model: (a: number, b: any) => void;
@@ -3785,10 +3776,36 @@ export const wasmrerankerconfig_maxRerankDurationSecs: (a: number) => [number, b
3785
3776
  export const wasmrerankerconfig_cacheDir: (a: number) => [number, number];
3786
3777
  export const wasmrerankerconfig_batchSize: (a: number) => number;
3787
3778
  export const wasmrerankerconfig_acceleration: (a: number) => number;
3779
+ export const wasmmarkdowncodeblock_code: (a: number) => [number, number];
3780
+ export const __wbg_wasmmarkdowncodeblock_free: (a: number, b: number) => void;
3781
+ export const wasmocrstrategy_set_minConfidence: (a: number, b: number, c: number) => void;
3782
+ export const wasmocrstrategy_mode: (a: number) => [number, number];
3783
+ export const wasmerrormetadata_message: (a: number) => [number, number];
3784
+ export const __wbg_wasmerrormetadata_free: (a: number, b: number) => void;
3785
+ export const wasmmarkdownlink_url: (a: number) => [number, number];
3786
+ export const __wbg_wasmmarkdownlink_free: (a: number, b: number) => void;
3787
+ export const wasmvlmfallbackpolicy_mode: (a: number) => [number, number];
3788
+ export const wasmvlmfallbackpolicy_set_qualityThreshold: (a: number, b: number, c: number) => void;
3789
+ export const wasmdiffline_set_kind: (a: number, b: number, c: number) => void;
3790
+ export const wasmdiffline_set_0: (a: number, b: number, c: number) => void;
3791
+ export const wasmdiffline_kind: (a: number) => [number, number];
3788
3792
  export const wasmdiffline_0: (a: number) => [number, number];
3789
- export const __wbg_wasmpresentationhyperlink_free: (a: number, b: number) => void;
3790
- export const wasmorientationresult_confidence: (a: number) => number;
3791
- export const __wbg_wasmemailconfig_free: (a: number, b: number) => void;
3793
+ export const wasmmultidocthresholds_bigramOverlapMin: (a: number) => number;
3794
+ export const wasmqrboundingbox_y: (a: number) => number;
3795
+ export const wasmdocumentboundary_confidence: (a: number) => number;
3796
+ export const __wbg_wasmocrelementconfig_free: (a: number, b: number) => void;
3797
+ export const wasmpropertychange_set_name: (a: number, b: number, c: number) => void;
3798
+ export const wasmpropertychange_set_from: (a: number, b: number, c: number) => void;
3799
+ export const wasmpropertychange_set_to: (a: number, b: number, c: number) => void;
3800
+ export const wasmpropertychange_name: (a: number) => [number, number];
3801
+ export const wasmpropertychange_from: (a: number) => [number, number];
3802
+ export const wasmpropertychange_to: (a: number) => [number, number];
3803
+ export const wasmrakeparams_maxWordsPerPhrase: (a: number) => number;
3804
+ export const __wbg_wasmrakeparams_free: (a: number, b: number) => void;
3805
+ export const __wbg_wasmocrtableboundingbox_free: (a: number, b: number) => void;
3806
+ export const wasmocrtableboundingbox_top: (a: number) => number;
3807
+ export const wasmqrboundingbox_width: (a: number) => number;
3808
+ export const wasmqrboundingbox_height: (a: number) => number;
3792
3809
  export const __wbg_wasmsparseembeddingmodeltype_free: (a: number, b: number) => void;
3793
3810
  export const wasmsparseembeddingmodeltype_set_type: (a: number, b: number, c: number) => void;
3794
3811
  export const wasmsparseembeddingmodeltype_set_name: (a: number, b: number, c: number) => void;