UNPKG

@hubee/hubee-ui-table

Version:

Hubee UI Table é uma biblioteca que faz abstração da implementação de data tables para o React

10 lines (9 loc) 335 B
/// <reference types="react" /> export default interface TablePaginationProps { count: number; page: number; rowsPerPage: number; rowsPerPageOptions: number[]; onRowsPerPageChange: (event: any) => void; onPageChange: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>, newPage: number) => void; }