mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
[react-bootstrap-table-next] Allow to pass JSX.Element as *PageText option (#45916)
This commit is contained in:
parent
84e08dbd90
commit
e115117b0f
8
types/react-bootstrap-table-next/index.d.ts
vendored
8
types/react-bootstrap-table-next/index.d.ts
vendored
@ -230,19 +230,19 @@ export type PaginationOptions = Partial<{
|
||||
/**
|
||||
* the text of first page button
|
||||
*/
|
||||
firstPageText: string;
|
||||
firstPageText: string | JSX.Element;
|
||||
/**
|
||||
* the text of previous page button
|
||||
*/
|
||||
prePageText: string;
|
||||
prePageText: string | JSX.Element;
|
||||
/**
|
||||
* the text of next page button
|
||||
*/
|
||||
nextPageText: string;
|
||||
nextPageText: string | JSX.Element;
|
||||
/**
|
||||
* the text of last page button
|
||||
*/
|
||||
lastPageText: string;
|
||||
lastPageText: string | JSX.Element;
|
||||
/**
|
||||
* the title of next page button
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user