@native-html/heuristic-table-plugin
Version:
🔠A 100% native component using heuristics to render tables in react-native-render-html
10 lines (9 loc) • 336 B
TypeScript
import { TNode } from 'react-native-render-html';
import { Display, Settings, TableRoot } from './shared-types';
export default class TableLayout {
readonly display: Display;
readonly columnWidths: number[];
readonly totalWidth: number;
readonly renderTree: TableRoot;
constructor(tnode: TNode, config: Settings);
}