You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
675 B
23 lines
675 B
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;
|
|
}
|