NgModuleRef
Represents an instance of an NgModule
created by an NgModuleFactory
.
Provides access to the NgModule
instance and related objects.
abstract class NgModuleRef<T> {
abstract injector: EnvironmentInjector
abstract componentFactoryResolver: ComponentFactoryResolver
abstract instance: T
abstract destroy(): void
abstract onDestroy(callback: () => void): void
}
Properties
Property | Description |
---|---|
abstract injector: EnvironmentInjector
|
Read-Only
The injector that contains all of the providers of the |
abstract componentFactoryResolver: ComponentFactoryResolver
|
Read-Only
The resolver that can retrieve component factories in a context of this module. Note: since v13, dynamic component creation via
Deprecated Angular no longer requires Component factories. Please use other APIs where Component class can be used directly. |
abstract instance: T
|
Read-Only
The |
Methods
destroy() |
---|
Destroys the module instance and all of the data structures associated with it. |
ParametersThere are no parameters. Returns
|
onDestroy() |
---|
Registers a callback to be executed when the module is destroyed. |