import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; import { AgInputModule } from 'ag-input'; @NgModule({ imports: [ BrowserModule, AgInputModule], declarations: [ AppComponent ], bootstrap: [ AppComponent ] }) export class AppModule { }