UNPKG

@bizhermit/react-sdk

Version:
14 lines (13 loc) 566 B
import { ListViewColumnFunction, ListViewColumnProps, ListViewHeaderOrFooterCellClicked } from "../list-view"; export declare type ListViewGroupColumnProps = { groupName?: string; name?: string; headerCellLabel?: string; headerCellTextAlign?: "left" | "center" | "right"; clickedHeaderCell?: ListViewHeaderOrFooterCellClicked; fixed?: boolean; fill?: boolean; columns: Array<ListViewColumnProps>; }; declare const ListViewGroupColumn: ListViewColumnFunction<ListViewGroupColumnProps>; export default ListViewGroupColumn;