From dea33290b7e175a07529dcbaf2b88dcccc93c5a9 Mon Sep 17 00:00:00 2001 From: alan Date: Thu, 21 Jan 2021 15:00:35 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20?= =?UTF-8?q?=E5=AE=8C=E5=96=84=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/combination/tab.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typescript/base/combination/tab.ts b/typescript/base/combination/tab.ts index 79ceee3d2..db241022e 100644 --- a/typescript/base/combination/tab.ts +++ b/typescript/base/combination/tab.ts @@ -3,7 +3,7 @@ import { Widget } from "../../core/widget"; export declare class Tab extends Widget { static xtype: string; - static EVENT_CHANGE: string; + static EVENT_CHANGE: string; setSelect(v: string | number): void; @@ -11,9 +11,9 @@ export declare class Tab extends Widget { getSelect(): string | number; - getSelectedTab(): any; + getSelectedTab(): T; - getTab(v: string | number): any; + getTab(v: string | number): T; populate(): void; }