docx-wasm 0.0.275 → 0.0.276-rc0

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.
@@ -61,6 +61,7 @@ export declare type HyperlinkJSON = {
61
61
  } | {
62
62
  type: "anchor";
63
63
  anchor: string;
64
+ children: HyperlinkChildJSON[];
64
65
  };
65
66
  };
66
67
  export declare type DeleteChildJSON = RunJSON | CommentRangeStartJSON | CommentRangeEndJSON;
@@ -61,6 +61,7 @@ export declare type HyperlinkJSON = {
61
61
  } | {
62
62
  type: "anchor";
63
63
  anchor: string;
64
+ children: HyperlinkChildJSON[];
64
65
  };
65
66
  };
66
67
  export declare type DeleteChildJSON = RunJSON | CommentRangeStartJSON | CommentRangeEndJSON;
@@ -91,6 +91,7 @@ export type HyperlinkJSON = {
91
91
  | {
92
92
  type: "anchor";
93
93
  anchor: string;
94
+ children: HyperlinkChildJSON[];
94
95
  };
95
96
  };
96
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docx-wasm",
3
- "version": "0.0.275",
3
+ "version": "0.0.276-rc0",
4
4
  "main": "dist/node/index.js",
5
5
  "browser": "dist/web/index.js",
6
6
  "author": "bokuweb <bokuweb12@gmail.com>",