UNPKG

@vlsergey/react-bootstrap-pagetable

Version:

Complex solution to work with pageable data, including sorting, filtering, actions, changing displayed columns, etc.

11 lines 408 B
import { ButtonProps } from 'react-bootstrap/Button'; interface ActionButtonPropsType<T> { children: ButtonProps['children']; disabled: ButtonProps['disabled']; selectedItems: T[]; onClick: (...etc: unknown[]) => unknown; size?: ButtonProps['size']; variant: ButtonProps['variant']; } export default ActionButtonPropsType; //# sourceMappingURL=ActionButtonPropsType.d.ts.map