From f3bfbe78382d4f2b0afb91a6bb7b64e83646c4a4 Mon Sep 17 00:00:00 2001 From: Kira Date: Fri, 18 Dec 2020 15:02:24 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-6533=20refactor:=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/case/combo/bubblecombo/popup.bubble.ts | 4 ---- .../widget/textvaluedownlistcombo/combo.textvaluedownlist.ts | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/typescript/case/combo/bubblecombo/popup.bubble.ts b/typescript/case/combo/bubblecombo/popup.bubble.ts index 71ca1e302..e23113b63 100644 --- a/typescript/case/combo/bubblecombo/popup.bubble.ts +++ b/typescript/case/combo/bubblecombo/popup.bubble.ts @@ -4,15 +4,11 @@ import { Widget } from "../../../core/widget"; export declare class BubblePopupView extends PopupView { static xtype: string; static EVENT_CLICK_TOOLBAR_BUTTON: string; - - populate(v: string): void; } export declare class BubblePopupBarView extends BubblePopupView { static xtype: string; static EVENT_CLICK_TOOLBAR_BUTTON: string; - - populate(v: string): void; } export declare class TextBubblePopupBarView extends Widget { diff --git a/typescript/widget/textvaluedownlistcombo/combo.textvaluedownlist.ts b/typescript/widget/textvaluedownlistcombo/combo.textvaluedownlist.ts index 32ba52b4e..e3387f30d 100644 --- a/typescript/widget/textvaluedownlistcombo/combo.textvaluedownlist.ts +++ b/typescript/widget/textvaluedownlistcombo/combo.textvaluedownlist.ts @@ -4,5 +4,5 @@ export declare class TextValueDownListCombo extends Widget { static xtype: string; static EVENT_CHANGE: string; - getValue(): [any]; + getValue(): [T]; }