Browse Source

Pull request #2298: 无jira任务 类型

Merge in VISUAL/fineui from ~IMP/fineui_fui:master to master

* commit '1263a034410db37f5f8cf4b45cc3910f512be0d6':
  无jira任务 类型
  无jira任务 类型
es6
imp 3 years ago
parent
commit
23cdab7db4
  1. 12
      typescript/core/inject.ts

12
typescript/core/inject.ts

@ -1,9 +1,9 @@
type _module = (xtype: string, cls: any) => void | Function;
type _constant = (xtype: string, cls: any) => void | Function;
type _model = (xtype: string, cls: any) => void | Function;
type _store = (xtype: string, cls: any) => void | Function;
type _service = (xtype: string, cls: any) => void | Function;
type _provider = (xtype: string, cls: any) => void | Function;
type _module = (xtype: string, cls: any) => void;
type _constant = <T>(xtype: string, cls: T) => (() => T);
type _model = (xtype: string, cls: any) => Function;
type _store = (xtype: string, cls: any) => Function;
type _service = (xtype: string, cls: any) => Function;
type _provider = (xtype: string, cls: any) => Function;
interface _modules {
getModule: (type: string) => any;

Loading…
Cancel
Save