From f48168f47c7a6e6d7906edda20e401edae3f9406 Mon Sep 17 00:00:00 2001 From: Kira Date: Wed, 19 May 2021 16:15:10 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-7826=20refactor:=20=E9=80=9A=E7=94=A8?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/shims-tsx.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/shims-tsx.ts b/typescript/shims-tsx.ts index daf5ac1e2..57f43e870 100644 --- a/typescript/shims-tsx.ts +++ b/typescript/shims-tsx.ts @@ -1,8 +1,8 @@ declare const React: any; interface UIProps { - width: number; - height: number; + width: number | string; + height: number | string; top: number; left: number; bottom: number;