From 7a7fdb0e35daa1a383b2a4926d6efeac7d658364 Mon Sep 17 00:00:00 2001 From: yuche Date: Fri, 14 Dec 2018 10:04:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(types):=20input=20=E6=9C=89=20name=20?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=EF=BC=8Cclose=20#1505?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/taro-components/types/Input.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/taro-components/types/Input.d.ts b/packages/taro-components/types/Input.d.ts index 6bc238beda5d..a56c649f5f11 100644 --- a/packages/taro-components/types/Input.d.ts +++ b/packages/taro-components/types/Input.d.ts @@ -133,6 +133,8 @@ interface InputProps extends StandardProps, FormItemProps { * event.detail = {value: value} */ onConfirm?: BaseEventFunction + + name?: string } declare const Input: ComponentType