@hubee/hubee-ui-table
Version:
Hubee UI Table é uma biblioteca que faz abstração da implementação de data tables para o React
14 lines (13 loc) • 356 B
TypeScript
/// <reference types="react" />
interface TheadCellActionProps {
label?: string;
isLastCell: boolean;
enableRowActions: boolean;
}
declare function TheadCellAction(props: TheadCellActionProps): JSX.Element;
declare namespace TheadCellAction {
var defaultProps: {
label: string;
};
}
export default TheadCellAction;