Interface ThRendererProps

interface ThRendererProps {
    align: undefined | "center" | "left" | "right";
    cell: TableCell;
    children: ReactNode;
    table: Table;
}

Properties

align: undefined | "center" | "left" | "right"
cell: TableCell
children: ReactNode
table: Table