https://github.com/angular/angular
Raw File
Tip revision: 50392759100caf907c0c24ea529ae8f4a9f2c31e authored by Dylan Hunn on 15 September 2022, 02:54:27 UTC
release: cut the v15.0.0-next.2 release
Tip revision: 5039275
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