一个空模块
import { NgModule } from '@angular/core';
@NgModule({
declarations: [], // components your module owns.
imports: [], // other modules your module needs.
providers: [], // providers available to your module.
bootstrap: [] // bootstrap this root component.
})
export class MyModule {}
这是一个空模块,不包含用于引导的声明,导入,提供程序或组件。使用此参考。