UNPKG

contentful-rich-text-html-parser

Version:
6 lines (5 loc) 202 B
import type { HTMLNode } from "./types.js"; export interface ParserOptions { ignoreWhiteSpace: boolean; } export declare const parseHtml: (htmlString: string, options: ParserOptions) => HTMLNode[];