From 42968d15f5c42cf149084e78ecbcf6dab9418b61 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Wed, 16 Jun 2021 19:20:43 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-8167=20=E8=A1=A5=E5=85=85=E5=A3=B0?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/single/button/buttons/button.image.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/typescript/base/single/button/buttons/button.image.ts b/typescript/base/single/button/buttons/button.image.ts index 5c9a34403..e8d1e8019 100644 --- a/typescript/base/single/button/buttons/button.image.ts +++ b/typescript/base/single/button/buttons/button.image.ts @@ -4,6 +4,12 @@ export declare class ImageButton extends BasicButton { static xtype: string; static EVENT_CHANGE: string; + props: { + src?: string; + iconWidth?: number; + iconHeight?: number; + } & BasicButton['props']; + setImageWidth(w: number | string): void; setImageHeight(h: number | string): void;