Skip to content

Commit

Permalink
[Pagination] Fix type of UsePaginationItem["page"] (#31295)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronadamsCA committed Mar 9, 2022
1 parent 49ad1f9 commit 6c6ce14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-material/src/usePagination/usePagination.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export interface UsePaginationProps {
export interface UsePaginationItem {
onClick: React.ReactEventHandler;
type: 'page' | 'first' | 'last' | 'next' | 'previous' | 'start-ellipsis' | 'end-ellipsis';
page: number;
page: number | null;
selected: boolean;
disabled: boolean;
}
Expand Down

0 comments on commit 6c6ce14

Please sign in to comment.