https://github.com/angular/angular
Raw File
Tip revision: fb10abcf3ed66866c05d1de3303480f345c974b7 authored by Andrew Scott on 11 October 2023, 16:50:52 UTC
release: cut the v16.2.9 release
Tip revision: fb10abc
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