Browse Source

KERNEL-6537 补充类型定义

es6
alan 4 years ago
parent
commit
26c2ce3fcd
  1. 10
      typescript/case/combo/editoriconcheckcombo/combo.editiconcheck.ts
  2. 3
      typescript/index.ts

10
typescript/case/combo/editoriconcheckcombo/combo.editiconcheck.ts

@ -0,0 +1,10 @@
import { Widget } from "../../../core/widget";
export declare class EditorIconCheckCombo extends Widget {
static xtype: string;
static EVENT_CHANGE: string;
static EVENT_FOCUS: string;
static EVENT_EMPTY: string;
static EVENT_VALID: string;
static EVENT_ERROR: string;
}

3
typescript/index.ts

@ -136,6 +136,7 @@ import { NumberEditor } from "./widget/numbereditor/numbereditor";
import { TextValueCheckCombo } from "./case/combo/textvaluecheckcombo/combo.textvaluecheck";
import { LinearSegment } from "./case/linersegment/linear.segment";
import { Img } from "./base/single/img/img";
import { EditorIconCheckCombo } from "./case/combo/editoriconcheckcombo/combo.editiconcheck";
type ClassConstructor<T extends {}> = T & {
@ -287,6 +288,7 @@ export interface BI extends _func, _i18n, _base, _inject {
NumberEditor: typeof NumberEditor;
LinearSegment: typeof LinearSegment;
Img: typeof Img;
EditorIconCheckCombo: typeof EditorIconCheckCombo;
}
export default {
@ -432,4 +434,5 @@ export {
NumberEditor,
LinearSegment,
Img,
EditorIconCheckCombo,
};

Loading…
Cancel
Save