Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
import { NgxTypeaheadModule } from 'ngx-typeahead';
import { NgxYoutubePlayerModule } from 'ngx-youtube-player';
import { CORE_COMPONENTS } from './components';
import { CORE_DIRECTIVES } from './directives';
import { PIPES } from './pipes';
// import { TooltipModule } from 'ngx-tooltip';
import { DragDropModule } from '@angular/cdk/drag-drop';
@NgModule({
imports: [
CommonModule,
FormsModule,
RouterModule,
NgxYoutubePlayerModule.forRoot(),
InfiniteScrollModule,
NgxTypeaheadModule,
// TooltipModule,
DragDropModule
],
declarations: [...CORE_COMPONENTS, ...CORE_DIRECTIVES, ...PIPES],
exports: [
CommonModule,
FormsModule,
...CORE_COMPONENTS,
...CORE_DIRECTIVES,
...PIPES,
InfiniteScrollModule,
NgxYoutubePlayerModule,
NgxTypeaheadModule,
// TooltipModule,
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxYoutubePlayerModule } from 'ngx-youtube-player';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, NgxYoutubePlayerModule.forRoot()],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}