/** * */ export interface SelectableProps { /** * */ cells?: boolean; /** * */ checkbox?: boolean; /** * */ checkboxColumnIndex?: number | string; /** * TODO resolve any to interface */ checkboxDefaults?: any; /** * */ checkboxSelect?: boolean; /** * */ columns?: boolean; /** * */ deselectable?: boolean; /** * */ disabled?: boolean; /** * */ drag?: boolean; /** * */ extensible?: true | false | "x" | "y" | "xy" | "both"; /** * */ headerCheckbox?: boolean; /** * */ mode?: "single" | "simple" | "multi"; /** * TODO resolve any to interface */ publishes?: string | string[] | any; /** * */ reducible?: boolean; /** * */ rows?: boolean; } export default SelectableProps;