https://github.com/angular/angular
Raw File
Tip revision: a3f3082bf0dfebad30158dff23f9ad19990518cc authored by atscott on 19 August 2020, 16:05:11 UTC
release: cut the v10.0.11 release
Tip revision: a3f3082
resource-list.module.ts
import { NgModule, Type } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ResourceListComponent } from './resource-list.component';
import { ResourceService } from './resource.service';
import { WithCustomElementComponent } from '../element-registry';

@NgModule({
  imports: [ CommonModule ],
  declarations: [ ResourceListComponent ],
  entryComponents: [ ResourceListComponent ],
  providers: [ ResourceService ]
})
export class ResourceListModule implements WithCustomElementComponent {
  customElementComponent: Type<any> = ResourceListComponent;
}
back to top