UNPKG

antd-mobile

Version:

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

18 lines (17 loc) 514 B
import * as React from 'react'; import ProgressProps from './ProgressPropsType'; export default class Progress extends React.Component<ProgressProps, any> { static propTypes: { percent: React.Requireable<any>; position: React.Requireable<any>; unfilled: React.Requireable<any>; }; static defaultProps: { percent: number; position: string; unfilled: string; }; constructor(props: any); onLayout: (e: any) => void; render(): JSX.Element; }