UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

23 lines (22 loc) 648 B
import * as React from 'react'; import PaginationProps from './PaginationPropTypes'; export default class Pagination extends React.Component<PaginationProps, any> { static defaultProps: { prefixCls: string; mode: string; current: number; simple: boolean; prevText: string; nextText: string; onChange: () => void; }; constructor(props: any); componentWillReceiveProps(nextProps: any): void; _hasPrev(): boolean; _hasNext(): boolean; _handleChange(p: any): any; onPrev(): void; onNext(): void; getIndexes(count: any): any[]; render(): JSX.Element; }