antd-mobile-alita
Version:
基于 React 的移动设计规范实现
13 lines (12 loc) • 387 B
TypeScript
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { PropsType } from 'rmc-pull-to-refresh/lib/PropsType';
export default class PullToRefresh extends React.Component<PropsType, any> {
static defaultProps: {
prefixCls: string;
};
static contextTypes: {
antLocale: PropTypes.Requireable<object>;
};
render(): JSX.Element;
}