@native-html/table-plugin
Version:
🔠A WebView-based plugin to render tables in react-native-render-html
25 lines (23 loc) • 693 B
text/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;
}
}