🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@types/react-html-parser

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/react-html-parser

TypeScript definitions for react-html-parser

2.0.7
ts5.0
ts5.1
ts5.2
ts5.3
ts5.4
ts5.5
ts5.6
ts5.7
ts5.8
ts5.9
latest
Source
npm
Version published
Weekly downloads
104K
-10.37%
Maintainers
0
Weekly downloads
 
Created
Source

Installation

npm install --save @types/react-html-parser

Summary

This package contains type definitions for react-html-parser (https://github.com/wrakky/react-html-parser#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-html-parser.

index.d.ts

import { DomElement } from "htmlparser2";
import { ReactElement } from "react";

export interface Transform {
    // eslint-disable-next-line @typescript-eslint/no-invalid-void-type
    (node: DomElement, index: number, transform?: Transform): ReactElement | void | null;
}

export interface Options {
    decodeEntities?: boolean | undefined;
    transform?: Transform | undefined;
    preprocessNodes?(nodes: DomElement[]): any;
}

export function convertNodeToElement(
    node: DomElement,
    index: number,
    transform: Transform,
): ReactElement;

export function processNodes(nodes: DomElement[], transform: Transform): ReactElement[];

export default function HtmlParser(html: string, options?: Options): ReactElement[];

Additional Details

  • Last updated: Mon, 03 Mar 2025 19:02:28 GMT
  • Dependencies: @types/htmlparser2, @types/react

Credits

These definitions were written by Spencer Elliott, and Wooram Jun.

FAQs

Package last updated on 03 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts