antd-mobile
Version:
基于 React 的移动设计规范实现
20 lines (19 loc) • 542 B
TypeScript
/// <reference types="react" />
import React from 'react';
import PaginationProps from './PropsType';
export default class Pagination extends React.Component<PaginationProps, any> {
static defaultProps: {
prefixCls: string;
mode: string;
current: number;
simple: boolean;
onChange: () => void;
};
static contextTypes: {
antLocale: any;
};
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
onChange(p: any): void;
render(): JSX.Element;
}