@bizhermit/react-sdk
Version:
React SDK
12 lines (11 loc) • 438 B
TypeScript
import { ListViewColumnFunction, ListViewEditColumnProps } from "../list-view";
declare const ListViewCheckBoxColumn: ListViewColumnFunction<ListViewEditColumnProps<{
value: boolean | number | string;
checked: boolean;
}> & {
checkedValue?: boolean | number | string;
uncheckedValue?: boolean | number | string;
batchCheck?: boolean;
toggleRowClick?: boolean;
}>;
export default ListViewCheckBoxColumn;