antd-mobile
Version:
基于 React 的移动设计规范实现
19 lines (18 loc) • 426 B
TypeScript
interface PaginationPropTypes {
prefixCls?: string;
className?: string;
mode?: 'button' | 'number' | 'pointer';
simple?: Boolean;
style?: any;
current: number;
total: number;
prevText?: string;
nextText?: string;
onPrev?: () => void;
onNext?: () => void;
onChange?: Function;
indicatorStyle?: any;
/** rn only **/
styles?: any;
}
export default PaginationPropTypes;