https://github.com/angular/angular
Raw File
Tip revision: 00f293c35f74a71d08e8f66efa50fe7194377355 authored by Andrew Kushnir on 21 June 2023, 18:20:23 UTC
release: cut the v16.1.2 release
Tip revision: 00f293c
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