UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

11 lines (10 loc) 426 B
import type { ReactTableHooks } from '../types/index.js'; /** * A plugin hook for manual row selection. * * @param {string} manualRowSelectedKey - If this key is found on the original data row, and it is true, this row will be manually selected. __Defaults to `"isSelected"`__. */ export declare const useManualRowSelect: (manualRowSelectedKey?: string) => { (hooks: ReactTableHooks): void; pluginName: string; };