From 01fe0683bd2c08d2be0bdecfd9c79fa48cfdd138 Mon Sep 17 00:00:00 2001 From: youki Date: Thu, 27 May 2021 14:57:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20chore:=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/widget/multiselect/multiselect.combo.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typescript/widget/multiselect/multiselect.combo.ts b/typescript/widget/multiselect/multiselect.combo.ts index d77d5f3b6..e1d444b87 100644 --- a/typescript/widget/multiselect/multiselect.combo.ts +++ b/typescript/widget/multiselect/multiselect.combo.ts @@ -24,7 +24,7 @@ export declare class MultiSelectCombo extends Single { _joinKeywords(keywords: string[], callback: Function): void; _joinAll(res: { - type: string; + type: number; value: string[]; assist: string[]; }, callback: Function): void; @@ -42,13 +42,13 @@ export declare class MultiSelectCombo extends Single { hideView(): void; setValue(value: { - type: string; + type: number; value: string[]; assist: string[]; }): void; getValue(): { - type: string; + type: number; value: string[]; assist: string[]; };