UNPKG

opt-table

Version:

A Responsive and Customizable Rich Table

12 lines (11 loc) 529 B
import React from "react"; import { DetailPanelProps, OptTableRefProps, TableHeaderInterface, options } from "./types"; interface propsType<T> { table_head_list: TableHeaderInterface<T>[]; has_edit_row: boolean; options?: options<T>; row_data: T; DetailPanels: DetailPanelProps<T>[] | undefined; } declare const MemorizedRow: <T>(props: propsType<T> & React.RefAttributes<OptTableRefProps>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null; export default MemorizedRow;