This is the archived documentation for Angular v6. Please visit angular.io to see documentation for the current version of Angular.

ModuleWithProviders

A wrapper around an NgModule that associates it with the providers.

      
      interface ModuleWithProviders<T> {
  ngModule: Type<T>
  providers?: Provider[]
}
    

Properties

Property Description
ngModule: Type<T>
providers?: Provider[]