DynamicModule
@agros/tools / DynamicModule
Interface: DynamicModule<T>
Interface defining a Dynamic Module.
Public Api
Type parameters
Name | Type |
---|---|
T | any |
Hierarchy
↳
DynamicModule
Table of contents
Properties
Properties
components
• Optional
components: Type
<any
>[]
Inherited from
ModuleDecoratorOptions.components
Defined in
packages/agros-tools/src/types.ts:109
exports
• Optional
exports: Type
<any
>[]
Inherited from
ModuleDecoratorOptions.exports
Defined in
packages/agros-tools/src/types.ts:110
global
• Optional
global: boolean
When "true", makes a module global-scoped.
Once imported into any module, a global-scoped module will be visible in all modules. Thereafter, modules that wish to inject a service exported from a global module do not need to import the provider module.
Default
false
Defined in
packages/agros-tools/src/types.ts:138
imports
• Optional
imports: AsyncModuleClass
<any
>[]
Inherited from
ModuleDecoratorOptions.imports
Defined in
packages/agros-tools/src/types.ts:107
module
• module: Type
<T
>
A module reference
Defined in
packages/agros-tools/src/types.ts:128
providers
• Optional
providers: Provider
<any
>[]
Inherited from
ModuleDecoratorOptions.providers