@dccs/react-table-mui
Version:
A Material-UI implementation of react-table-plain
12 lines (11 loc) • 326 B
TypeScript
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>;