UNPKG

@native-html/heuristic-table-plugin

Version:

🔠 A 100% native component using heuristics to render tables in react-native-render-html

16 lines (15 loc) • 446 B
import { CustomBlockRenderer } from 'react-native-render-html'; import { HeuristicTablePluginConfig } from './shared-types'; declare module 'react-native-render-html' { interface RenderersPropsBase { table?: HeuristicTablePluginConfig; } } /** * A 100% native renderer component for `table` tag. * * @param props - Component props. * @public */ declare const TableRenderer: CustomBlockRenderer; export default TableRenderer;