From da681fe4dd40698e26ac73e5cf0f8ed47a971e93 Mon Sep 17 00:00:00 2001 From: Tom Xu Date: Fri, 6 Nov 2020 09:52:42 +0800 Subject: [PATCH] chore: improve select ref type (#27594) --- components/select/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/select/index.tsx b/components/select/index.tsx index a9b8fe6bc6..166fa92200 100755 --- a/components/select/index.tsx +++ b/components/select/index.tsx @@ -145,7 +145,7 @@ const InternalSelect = ( }; const SelectRef = React.forwardRef(InternalSelect) as ( - props: SelectProps & { ref?: React.Ref }, + props: SelectProps & { ref?: React.Ref }, ) => React.ReactElement; type InternalSelectType = typeof SelectRef;