https://github.com/angular/angular
Raw File
Tip revision: fecd141dfa541eb3e1c62767820474265e9a2443 authored by Pawel Kozlowski on 08 November 2023, 12:21:00 UTC
release: cut the v17.0.0 release
Tip revision: fecd141
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 ],
  providers: [ ResourceService ]
})
export class ResourceListModule implements WithCustomElementComponent {
  customElementComponent: Type<any> = ResourceListComponent;
}
back to top