https://github.com/angular/angular
Raw File
Tip revision: 0115e2b66493b06532f5399f3cad79e6149aed7f authored by Alex Rickabaugh on 15 December 2021, 19:31:25 UTC
release: cut the v13.1.1 release (#44495)
Tip revision: 0115e2b
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