Completely updated React, fixed #11, (hopefully)
This commit is contained in:
20
goTorrentWebUI/node_modules/material-ui/Table/TablePaginationActions.d.ts
generated
vendored
Normal file
20
goTorrentWebUI/node_modules/material-ui/Table/TablePaginationActions.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { TableCellClassKey } from './TableCell.d';
|
||||
import { IconButtonProps } from '../IconButton/IconButton';
|
||||
|
||||
export interface TablePaginationActionsProps
|
||||
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, TablePaginationActionsClassKey> {
|
||||
backIconButtonProps?: Partial<IconButtonProps>;
|
||||
count: number;
|
||||
nextIconButtonProps?: Partial<IconButtonProps>;
|
||||
onChangePage: (event: React.MouseEvent<HTMLButtonElement> | null, page: number) => void;
|
||||
page: number;
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
export type TablePaginationActionsClassKey = 'root';
|
||||
|
||||
declare const TablePaginationActions: React.ComponentType<TablePaginationActionsProps>;
|
||||
|
||||
export default TablePaginationActions;
|
Reference in New Issue
Block a user