UNPKG

antd-mobile

Version:

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

17 lines (16 loc) 410 B
import * as React from 'react'; interface PaginationPropTypes { prefixCls?: string; className?: string; mode?: 'button' | 'number' | 'pointer'; simple?: Boolean; style?: React.CSSProperties; current: number; total: number; prevText?: string; nextText?: string; onPrev?: () => void; onNext?: () => void; onChange?: Function; } export default PaginationPropTypes;