ModuleMetadata
Interface defining the property object that describes the module.
interface ModuleMetadata {
imports?: Array<Type<any> | DynamicModule | Promise<DynamicModule> | ForwardReference>
controllers?: Type<any>[]
providers?: Provider[]
exports?: Array<DynamicModule | Promise<DynamicModule> | string | symbol | Provider | ForwardReference | Abstract<any> | Function>
}
Child interfaces
See also
Properties
Property | Description |
---|---|
imports?: Array<Type<any> | DynamicModule | Promise<DynamicModule> | ForwardReference>
|
Optional list of imported modules that export the providers which are required in this module. |
controllers?: Type<any>[]
|
Optional list of controllers defined in this module which have to be instantiated. |
providers?: Provider[]
|
Optional list of providers that will be instantiated by the Nest injector and that may be shared at least across this module. |
exports?: Array<DynamicModule | Promise<DynamicModule> | string | symbol | Provider | ForwardReference | Abstract<any> | Function>
|
Optional list of the subset of providers that are provided by this module and should be available in other modules which import this module. |