Browse Source

补充类型

es6
alan 4 years ago
parent
commit
0f3ecc15d2
  1. 3
      typescript/base/single/button/buttons/button.text.ts
  2. 3
      typescript/case/button/icon/icon.change.ts
  3. 5
      typescript/widget/downlist/combo.downlist.ts

3
typescript/base/single/button/buttons/button.text.ts

@ -17,6 +17,9 @@ export interface _TextButtonStatic {
}
export declare class TextButton extends BasicButton {
static xtype: string;
static EVENT_CHANGE: string;
setStyle(style: any): void;
doRedMark(...args: any[]): void;

3
typescript/case/button/icon/icon.change.ts

@ -13,6 +13,9 @@ export interface _IconChangeButtonStatic {
}
export declare class IconChangeButton extends Single {
static xtype: string;
static EVENT_CHANGE: string;
isSelected(): boolean;
setSelected(v: boolean): void;

5
typescript/widget/downlist/combo.downlist.ts

@ -15,6 +15,11 @@ export interface _DownListComboStatic {
}
export declare class DownListCombo extends Widget {
static xtype: string;
static EVENT_CHANGE: string;
static EVENT_SON_VALUE_CHANGE: string;
static EVENT_BEFORE_POPUPVIEW: string;
hideView: () => void;
showView: (e?: any) => void;

Loading…
Cancel
Save