@native-html/table-plugin
Version:
🔠A WebView-based plugin to render tables in react-native-render-html
15 lines (14 loc) • 696 B
TypeScript
import type { TableConfig } from './types';
export type { HTMLTableBaseProps, HTMLTableProps, HTMLTableStats, TableStyleSpecs, TableConfig, TableContentHeightState, TableAccurateContentHeightState, TableHeuristicContentHeightState } from './types';
export { defaultTableStylesSpecs, cssRulesFromSpecs } from './css-rules';
export { HTMLTable } from './HTMLTable';
export { default as useHtmlTableProps } from './useHtmlTableProps';
export { default, tableModel } from './TableRenderer';
declare module 'react-native-render-html' {
interface RenderersProps {
/**
* Configuration for `@native-html/table-plugin` table renderer.
*/
table?: TableConfig;
}
}