NgModuleRef

From Get docs
< @angular/coreAngular/docs/8/api/core/ngmoduleref


NgModuleRef

class

Represents an instance of an NgModule created via a NgModuleFactory.

See more...

abstract class NgModuleRef<T> {
  abstract injector: Injector
  abstract componentFactoryResolver: ComponentFactoryResolver
  abstract instance: T
  abstract destroy(): void
  abstract onDestroy(callback: () => void): void
}

Description

NgModuleRef provides access to the NgModule Instance as well other objects related to this NgModule Instance.

Properties

Property Description
abstract injector: Injector

Read-Only The injector that contains all of the providers of the NgModule.

abstract componentFactoryResolver: ComponentFactoryResolver

Read-Only The ComponentFactoryResolver to get hold of the ComponentFactories declared in the entryComponents property of the module.

abstract instance: T

Read-Only The NgModule instance.

Methods

Destroys the module instance and all of the data structures associated with it.

abstract destroy(): void

Parameters

There are no parameters.

Returns

void


Allows to register a callback that will be called when the module is destroyed.

abstract onDestroy(callback: () => void): void

Parameters
callback () => void
Returns

void



© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v8.angular.io/api/core/NgModuleRef