From 2e759e2bea9d23247e7e38f6f21aae4ffbfcd7d7 Mon Sep 17 00:00:00 2001 From: afc163 Date: Wed, 22 Aug 2018 13:54:51 +0800 Subject: [PATCH] Add initial prop for TypeScript, ref #11180 --- components/steps/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/steps/index.tsx b/components/steps/index.tsx index bdbd71ea54..5a8f85fbcc 100644 --- a/components/steps/index.tsx +++ b/components/steps/index.tsx @@ -6,6 +6,7 @@ export interface StepsProps { prefixCls?: string; iconPrefix?: string; current?: number; + initial?: number; status?: 'wait' | 'process' | 'finish' | 'error'; size?: 'default' | 'small'; direction?: 'horizontal' | 'vertical';