From b4b6e9c2eea216f37f2c8de5292ec3d36df2eb42 Mon Sep 17 00:00:00 2001
From: alan <alan@fanruan.com>
Date: Mon, 30 Dec 2019 10:47:00 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20=E6=97=A0jira=E4=BB=BB=E5=8A=A1=EF=BC=8C?=
 =?UTF-8?q?=E4=BF=AE=E6=94=B9createItems=E5=8F=82=E6=95=B0=E7=B1=BB?=
 =?UTF-8?q?=E5=9E=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 typescript/core/base.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typescript/core/base.ts b/typescript/core/base.ts
index e8ecfc3f0..330030f51 100644
--- a/typescript/core/base.ts
+++ b/typescript/core/base.ts
@@ -11,7 +11,7 @@ export interface _base {
 
     createWidgets: (items: any, options: any, context: any) => any;
 
-    createItems: <T, U, K>(data: T[], innerAttr?: U[], outerAttr?: K[]) => (U & T & K)[];
+    createItems: <T, U, K>(data: T[], innerAttr?: [], outerAttr?: []) => (U & T & K)[];
 
     packageItems: (items: any[], layouts: any[]) => any[];