@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
18 lines (17 loc) • 412 B
TypeScript
/**
* Defines the `SelectionMode` of the AnalyticalTable.
*/
export declare enum AnalyticalTableSelectionMode {
/**
* The rows are not selectable.
*/
None = "None",
/**
* Only a single row is selectable. Clicking on another row will unselect the previously selected row.
*/
Single = "Single",
/**
* Multiple rows are selectable.
*/
Multiple = "Multiple"
}