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