UNPKG

@native-html/table-plugin

Version:

🔠 A WebView-based plugin to render tables in react-native-render-html

7 lines (6 loc) • 215 B
import { HTMLTableStats } from './types'; import type { Node } from 'domhandler'; export default function extractHtmlAndStatsFromTableDomNode(domNode: Node | null): { html: string; stats: HTMLTableStats; };