@td-design/react-native
Version:
react-native UI组件库
15 lines • 416 B
TypeScript
import { FC } from 'react';
import { StepProps } from './step';
export interface FlowProps {
/** 当前的状态 */
status?: 'wait' | 'process' | 'finish' | 'error';
/** 步骤的数据 */
steps?: Array<StepProps>;
/** 全局的size*/
size?: number;
/** 当前的进度 */
current?: number;
}
declare const Flow: FC<FlowProps>;
export default Flow;
//# sourceMappingURL=index.d.ts.map