From 1d837b03b13ce32c58deef77e41d81804da5a17e Mon Sep 17 00:00:00 2001 From: shaodahong <337097324@qq.com> Date: Mon, 28 Jan 2019 14:32:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20ActionSheet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复 closeText 的类型错误 --- packages/action-sheet/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/action-sheet/index.tsx b/packages/action-sheet/index.tsx index 4b39ea26..4969363f 100644 --- a/packages/action-sheet/index.tsx +++ b/packages/action-sheet/index.tsx @@ -19,7 +19,7 @@ export interface ActionSheetProps { visible?: boolean className?: string items: ActionSheetPropsItems[] - closeText: any + closeText?: any onClose?: MouseEventHandler onClick?: (item: ActionSheetPropsItems) => void [otherProps: string]: any