Browse Source

无jira任务: 类型补充

es6
Kira 3 years ago
parent
commit
7b867339fb
  1. 10
      typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts
  2. 3
      typescript/index.ts

10
typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts

@ -0,0 +1,10 @@
import { Pane } from "../../../base/pane";
export declare class TextValueCheckComboPopup extends Pane {
static xtype: string;
static EVENT_CHANGE: string;
populate(items: any[]): void;
getValue(): any;
setValue(): void;
}

3
typescript/index.ts

@ -150,6 +150,7 @@ import { LayerController } from "./core/controller/controller.layer";
import { DateCalendarPopup } from "./widget/date/calendar/popup.calendar.date";
import { Tree, Node } from "./core/utils/tree";
import { TextNode } from "./base/single/button/node/textnode";
import { TextValueCheckComboPopup } from "./case/combo/textvaluecheckcombo/popup.textvaluecheck";
export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils {
@ -305,6 +306,7 @@ export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils {
DynamicYearMonthPopup: typeof DynamicYearMonthPopup;
DateCalendarPopup: typeof DateCalendarPopup;
TextNode: typeof TextNode;
TextValueCheckComboPopup: typeof TextValueCheckComboPopup;
}
export default {
@ -462,4 +464,5 @@ export {
Tree,
Node,
TextNode,
TextValueCheckComboPopup,
};

Loading…
Cancel
Save