From 91fe4a03fcafcfdda2b2b720f6c60ac1d7aa34f5 Mon Sep 17 00:00:00 2001 From: Kira Date: Fri, 17 Jan 2020 12:05:27 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=8F=98=E9=87=8F=E5=A3=B0?= =?UTF-8?q?=E6=98=8E=E6=94=B9=E6=88=90string?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/pane.ts | 4 ++-- typescript/base/single/button/button.basic.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/typescript/base/pane.ts b/typescript/base/pane.ts index 1d8acd8bf..75c3fc9f0 100644 --- a/typescript/base/pane.ts +++ b/typescript/base/pane.ts @@ -8,5 +8,5 @@ export interface _Pane extends _Widget { } export interface _PaneStatic { - EVENT_LOADED: "EVENT_LOADED"; -} \ No newline at end of file + EVENT_LOADED: string; +} diff --git a/typescript/base/single/button/button.basic.ts b/typescript/base/single/button/button.basic.ts index 4aada2a99..acdb143d2 100644 --- a/typescript/base/single/button/button.basic.ts +++ b/typescript/base/single/button/button.basic.ts @@ -33,5 +33,5 @@ export interface _BasicButton extends _Single { } export interface _BasicButtonStatic { - EVENT_CHANGE: "BasicButton.EVENT_CHANGE"; + EVENT_CHANGE: string; }