UNPKG

@dccs/react-table-mui

Version:
12 lines (11 loc) 326 B
export declare enum RowSelectionType { "single-line" = 0, "multi-line" = 1 } export interface IRowSelectionProps<T> { selectedRow?: T | T[]; onChangeSelectedRow?: (data: T) => void; selectedRowProps?: (data: T) => object; columnName: string; } export type RowSelectionProps<T> = IRowSelectionProps<T>;