antd-mobile-alita
Version:
基于 React 的移动设计规范实现
23 lines (22 loc) • 675 B
TypeScript
import * as React from 'react';
import { ProgressPropsType } from './PropsType';
export interface ProgressProps extends ProgressPropsType {
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
barStyle?: React.CSSProperties;
}
export default class Progress extends React.Component<ProgressProps, any> {
static defaultProps: {
prefixCls: string;
percent: number;
position: string;
unfilled: boolean;
appearTransition: boolean;
};
barRef: HTMLDivElement | null;
private noAppearTransition;
componentWillReceiveProps(): void;
componentDidMount(): void;
render(): JSX.Element;
}