UNPKG

antd-mobile

Version:

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

14 lines (13 loc) 311 B
/// <reference types="react" /> import { ReactNode } from 'react'; interface Props { onRefresh?: () => void; refreshing?: boolean; /** web only */ prefixCls?: string; icon?: ReactNode; loading?: ReactNode; distanceToRefresh?: number; resistance?: number; } export default Props;