NgModule

  • Provides organization at a framework level.
  • declarations define view classes that are available to the module.
  • imports define a list of modules that the module needs.
  • providers define a list of services the module makes available.
  • exports define a list of modules the module makes available.
  • bootstrap defines the component that should be bootstrapped.

Backlinks