UNPKG

@native-html/table-plugin

Version:

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

21 lines (20 loc) • 526 B
import { TableStyleSpecs } from './types'; /** * Default styles attributes. * * <img src="https://raw.githubusercontent.com/native-html/table-plugin/master/images/TableStyleSpecs.png" /> * * @remarks * Custom attributes will be shallow-merged. * * @public */ export declare const defaultTableStylesSpecs: TableStyleSpecs; /** * Create css rules from a specification object. * * @param specs - The specifications object. * * @public */ export declare function cssRulesFromSpecs(specs?: TableStyleSpecs): string;