Skip to content

Commit

Permalink
[mui-material][Pagination] Update getItemAriaLabel page param type
Browse files Browse the repository at this point in the history
  • Loading branch information
sydneyjodon-wk committed Aug 21, 2024
1 parent f43f3d5 commit a48f695
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/mui-material/src/Pagination/Pagination.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ export interface PaginationProps
* @param {bool} selected If true, the current page is selected.
* @returns {string}
*/
getItemAriaLabel?: (type: UsePaginationItem['type'], page: number, selected: boolean) => string;
getItemAriaLabel?: (
type: UsePaginationItem['type'],
page: UsePaginationItem['page'],
selected: boolean,
) => string;

/**
* Render the item.
Expand Down

0 comments on commit a48f695

Please sign in to comment.