You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
654 B
19 lines
654 B
import * as React from 'react';
|
|
import { PaginationLocale, PaginationProps as RcPaginationProps } from 'rc-pagination';
|
|
export interface PaginationProps extends RcPaginationProps {
|
|
showQuickJumper?: boolean | {
|
|
goButton?: React.ReactNode;
|
|
};
|
|
size?: 'default' | 'small';
|
|
responsive?: boolean;
|
|
role?: string;
|
|
totalBoundaryShowSizeChanger?: number;
|
|
}
|
|
export declare type PaginationPosition = 'top' | 'bottom' | 'both';
|
|
export interface PaginationConfig extends PaginationProps {
|
|
position?: PaginationPosition;
|
|
}
|
|
export { PaginationLocale };
|
|
declare const Pagination: React.FC<PaginationProps>;
|
|
export default Pagination;
|