一個空模組

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 {}

這是一個空模組,不包含用於引導的宣告,匯入,提供程式或元件。使用此參考。