@hubee/hubee-ui-table
Version:
Hubee UI Table é uma biblioteca que faz abstração da implementação de data tables para o React
16 lines (15 loc) • 425 B
TypeScript
/// <reference types="react" />
import { Action } from '@/core/interfaces';
interface BodyCellActionProps {
isLastCell: boolean;
actions?: Action<any>[];
rowData?: any;
}
declare function BodyCellAction(props: BodyCellActionProps): JSX.Element;
declare namespace BodyCellAction {
var defaultProps: {
actions: never[];
rowData: undefined;
};
}
export default BodyCellAction;