From d5c6ba903554d58a54c4774485439a4081374318 Mon Sep 17 00:00:00 2001 From: Kira Date: Mon, 21 Dec 2020 15:54:16 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E6=8F=8F=E8=BF=B0=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/widget/multiselect/multiselect.insert.combo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/widget/multiselect/multiselect.insert.combo.ts b/typescript/widget/multiselect/multiselect.insert.combo.ts index 2eab5d55f..bee8796d3 100644 --- a/typescript/widget/multiselect/multiselect.insert.combo.ts +++ b/typescript/widget/multiselect/multiselect.insert.combo.ts @@ -45,13 +45,13 @@ export declare class MultiSelectInsertCombo extends Single { hideView(): void; setValue(value?: { - type: string; + type: number; value: string[]; assist: string[]; }): void; getValue(): { - type: string; + type: number; value: string[]; assist: string[]; };