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