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.
25 lines
653 B
25 lines
653 B
import * as React from 'react';
|
|
import { StepsPropsType } from './PropsType';
|
|
export interface StepsProps extends StepsPropsType {
|
|
prefixCls?: string;
|
|
iconPrefix?: string;
|
|
direction?: string;
|
|
labelPlacement?: string;
|
|
status?: string;
|
|
}
|
|
export default class Steps extends React.Component<StepsProps, any> {
|
|
static Step: any;
|
|
static defaultProps: {
|
|
prefixCls: string;
|
|
iconPrefix: string;
|
|
labelPlacement: string;
|
|
direction: string;
|
|
current: number;
|
|
};
|
|
stepRefs: any[];
|
|
stepsRef: any;
|
|
componentDidMount(): void;
|
|
componentDidUpdate(): void;
|
|
render(): JSX.Element;
|
|
}
|