Type alias ButtonAction

ButtonAction: number | ((pagination: PaginationData) => number) | ((pagination: PaginationData) => Promise<number>)

Type to represent an action that should be completed when the button is pressed.

It may be either a number of a page or a function that determines number of a page.

Generated using TypeDoc