From 26351182b469cdbd84092424c768b52eb2717d8c Mon Sep 17 00:00:00 2001 From: qianzhaoy Date: Wed, 27 Feb 2019 11:42:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(input-number):=20=E6=94=B9=E6=AD=A3=20d.ts,?= =?UTF-8?q?=20onBlur=20=E4=B8=BA=E9=9D=9E=E5=BF=85=E5=A1=AB=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- @types/input-number.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@types/input-number.d.ts b/@types/input-number.d.ts index b17441a10..de8aec76b 100644 --- a/@types/input-number.d.ts +++ b/@types/input-number.d.ts @@ -24,7 +24,7 @@ export interface AtInputNumberProps extends AtComponent{ onChange: (value: number) => void - onBlur: CommonEventFunction + onBlur?: CommonEventFunction } declare const AtInputNumber: ComponentClass