Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/react-html-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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
// Type definitions for react-html-parser 2.0
// Project: https://github.com/wrakky/react-html-parser#readme
// Definitions by: Spencer Elliott <https://github.com/elliottsj>
// Wooram Jun <https://github.com/chatoo2412>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import { DomElement } from "htmlparser2";
import { ReactElement } from "react";
export interface Transform {
(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: Wed, 27 Sep 2023 07:12:04 GMT
- Dependencies: @types/htmlparser2, @types/react
- Global values: none
Credits
These definitions were written by Spencer Elliott, and Wooram Jun.