markdown-to-jsx 9.4.0 → 9.4.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.
package/dist/html.d.cts CHANGED
@@ -174,10 +174,12 @@ type RequireAtLeastOne<
174
174
  type: typeof RuleType2.htmlBlock;
175
175
  attrs?: Record<string, any>;
176
176
  children?: ASTNode[] | undefined;
177
- noInnerParse?: Boolean;
177
+ verbatim?: boolean;
178
178
  rawAttrs?: string;
179
- tag: string;
179
+ rawText?: string | undefined;
180
+ /** @deprecated Use `rawText` instead. This property will be removed in a future major version. */
180
181
  text?: string | undefined;
182
+ tag: string;
181
183
  }
182
184
  export interface HTMLSelfClosingNode {
183
185
  type: typeof RuleType2.htmlSelfClosing;
package/dist/html.d.ts CHANGED
@@ -174,10 +174,12 @@ type RequireAtLeastOne<
174
174
  type: typeof RuleType2.htmlBlock;
175
175
  attrs?: Record<string, any>;
176
176
  children?: ASTNode[] | undefined;
177
- noInnerParse?: Boolean;
177
+ verbatim?: boolean;
178
178
  rawAttrs?: string;
179
- tag: string;
179
+ rawText?: string | undefined;
180
+ /** @deprecated Use `rawText` instead. This property will be removed in a future major version. */
180
181
  text?: string | undefined;
182
+ tag: string;
181
183
  }
182
184
  export interface HTMLSelfClosingNode {
183
185
  type: typeof RuleType2.htmlSelfClosing;