@sap-ux/ui-components
Version:
SAP UI Components Library
17 lines • 537 B
TypeScript
import React from 'react';
import type { UIFlexibleTableProps } from './types';
export interface RowActionsProps<T> {
rowIndex: number;
onMoveDownClick?: () => void;
onMoveUpClick?: () => void;
onFocusRowAction: (name: string) => void;
tableProps: UIFlexibleTableProps<T>;
}
/**
* RowActions component.
*
* @param {RowActionsProps<T>} props
* @returns {React.ReactElement}
*/
export declare function RowActions<T>(props: Readonly<RowActionsProps<T>>): React.ReactElement;
//# sourceMappingURL=RowActions.d.ts.map