ModuleWithProviders

对 NgModule 及其相关 providers 的包装。

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

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

属性

属性说明
ngModule: Type<T>
providers?: Provider[]