@hubee/hubee-ui-table
Version:
Hubee UI Table é uma biblioteca que faz abstração da implementação de data tables para o React
12 lines (11 loc) • 411 B
TypeScript
import { ITableSearchService } from '@/core/interfaces';
import React from 'react';
import { Row } from 'react-table';
interface Props {
isHeader: boolean;
row?: Row<any>;
indeterminate?: boolean;
service: ITableSearchService;
}
declare const IndeterminateCheckbox: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export default IndeterminateCheckbox;