@xberg-io/html-to-markdown-wasm 3.10.5 → 3.11.2

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.
@@ -23,6 +23,7 @@ export const __wbg_wasmtabledata_free: (a: number, b: number) => void;
23
23
  export const __wbg_wasmtablegrid_free: (a: number, b: number) => void;
24
24
  export const __wbg_wasmtextannotation_free: (a: number, b: number) => void;
25
25
  export const __wbg_wasmvisitorhandle_free: (a: number, b: number) => void;
26
+ export const __wbg_wasmvisitresult_free: (a: number, b: number) => void;
26
27
  export const convert: (a: number, b: number, c: number, d: number, e: number) => void;
27
28
  export const wasmannotationkind_annotationType: (a: number, b: number) => void;
28
29
  export const wasmannotationkind_default: () => number;
@@ -433,6 +434,11 @@ export const wasmtextannotation_kind: (a: number) => number;
433
434
  export const wasmtextannotation_new: (a: number, b: number, c: number) => number;
434
435
  export const wasmtextannotation_set_kind: (a: number, b: number) => void;
435
436
  export const wasmvisitorhandle_new: (a: number) => number;
437
+ export const wasmvisitresult_0: (a: number, b: number) => void;
438
+ export const wasmvisitresult_default: () => number;
439
+ export const wasmvisitresult_set_0: (a: number, b: number, c: number) => void;
440
+ export const wasmvisitresult_set_type: (a: number, b: number, c: number) => void;
441
+ export const wasmvisitresult_type: (a: number, b: number) => void;
436
442
  export const wasmnodecontent_ordered: (a: number) => number;
437
443
  export const wasmnodecontent_new: () => number;
438
444
  export const wasmheadermetadata_set_depth: (a: number, b: number) => void;
@@ -451,6 +457,7 @@ export const wasmtablegrid_rows: (a: number) => number;
451
457
  export const wasmtextannotation_end: (a: number) => number;
452
458
  export const wasmtextannotation_start: (a: number) => number;
453
459
  export const wasmannotationkind_new: () => number;
460
+ export const wasmvisitresult_new: () => number;
454
461
  export const wasmnodecontext_parentTag: (a: number, b: number) => void;
455
462
  export const wasmnodecontent_set_ordered: (a: number, b: number) => void;
456
463
  export const wasmnodecontext_set_tagName: (a: number, b: number, c: number) => void;
@@ -1,3 +1,8 @@
1
+ <!-- This file is auto-generated by alef — DO NOT EDIT. -->
2
+ <!-- alef:hash:d32d69ae6c515cbd1d322c0e87cee51f788c2997c4babb6a386781df3818cc45 -->
3
+ <!-- To regenerate: alef readme -->
4
+ <!-- To verify freshness: alef verify -->
5
+
1
6
  <p align="center">
2
7
  <picture>
3
8
  <source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/xberg-io/assets@v1/banner/readme-banner-dark.svg">
@@ -931,12 +931,14 @@ export enum WasmUrlEscapeStyle {
931
931
  * with default behavior, providing custom output, skipping elements,
932
932
  * preserving HTML, or signaling errors.
933
933
  */
934
- export enum WasmVisitResult {
935
- Continue = 0,
936
- Custom = 1,
937
- Skip = 2,
938
- PreserveHtml = 3,
939
- Error = 4,
934
+ export class WasmVisitResult {
935
+ free(): void;
936
+ [Symbol.dispose](): void;
937
+ static default(): WasmVisitResult;
938
+ constructor();
939
+ get 0(): string | undefined;
940
+ set 0(value: string | null | undefined);
941
+ type: string;
940
942
  }
941
943
 
942
944
  /**