From 82cdb66aa6abbb11235863261c76ccacb6e60ba1 Mon Sep 17 00:00:00 2001 From: iapyang Date: Thu, 16 Jul 2020 15:30:13 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/combination/combo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/base/combination/combo.ts b/typescript/base/combination/combo.ts index a9f6d4a3a..eb8bd6fe1 100644 --- a/typescript/base/combination/combo.ts +++ b/typescript/base/combination/combo.ts @@ -1,7 +1,7 @@ import { _Widget } from "../../core/widget"; export interface _Combo extends _Widget { - populate(items: any): void; + populate(...args: any[]): void; _setEnable(v: boolean): void;