From 715de30df849f8e076a91f877fd7d40cdb0fe1f9 Mon Sep 17 00:00:00 2001 From: alan Date: Mon, 14 Dec 2020 14:47:51 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-6431=20=E8=A1=A5=E5=85=85=E5=B1=9E?= =?UTF-8?q?=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/single/button/buttons/button.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/typescript/base/single/button/buttons/button.ts b/typescript/base/single/button/buttons/button.ts index a17f6ed73..882374da0 100644 --- a/typescript/base/single/button/buttons/button.ts +++ b/typescript/base/single/button/buttons/button.ts @@ -1,3 +1,4 @@ +import { IconLabel, Label } from "../../../.."; import { BasicButton, _BasicButton } from "../button.basic"; export interface _Button extends _BasicButton { @@ -18,6 +19,9 @@ export declare class Button extends BasicButton { static xtype: string; static EVENT_CHANGE: string; + + text: Label; + icon?: IconLabel; doRedMark(...args: any[]): void; @@ -26,4 +30,4 @@ export declare class Button extends BasicButton { doHighLight(...args: any[]): void; unHighLight(...args: any[]): void; -} \ No newline at end of file +}