From 2ca2d2a1d4c3e14f7cc42ca17e2ee3f04457083f Mon Sep 17 00:00:00 2001 From: Tangjinxia <1119518763@qq.com> Date: Fri, 23 Jul 2021 14:08:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20refactor:=20?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/combination/expander.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/typescript/base/combination/expander.ts b/typescript/base/combination/expander.ts index 781104f83..e874475a2 100644 --- a/typescript/base/combination/expander.ts +++ b/typescript/base/combination/expander.ts @@ -3,11 +3,11 @@ import { Widget } from "../../core/widget"; export declare class Expander extends Widget { static xtype: string; - static EVENT_EXPAND: number; - static EVENT_COLLAPSE: number; - static EVENT_TRIGGER_CHANGE: number; - static EVENT_CHANGE: number; - static EVENT_AFTER_INIT: number; + static EVENT_EXPAND: string; + static EVENT_COLLAPSE: string; + static EVENT_TRIGGER_CHANGE: string; + static EVENT_CHANGE: string; + static EVENT_AFTER_INIT: string; static EVENT_BEFORE_POPUPVIEW: string; static EVENT_AFTER_POPUPVIEW: string; static EVENT_BEFORE_HIDEVIEW: string;