dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_NotificationsModule cluster_NotificationsModule_declarations cluster_NotificationsModule_imports cluster_NotificationsModule_exports cluster_NotificationsModule_providers ErrorComponent ErrorComponent NotificationsModule NotificationsModule ErrorComponent->NotificationsModule NotificationsComponent NotificationsComponent NotificationsComponent->NotificationsModule ErrorComponent ErrorComponent NotificationsModule->ErrorComponent NotificationsComponent NotificationsComponent NotificationsModule->NotificationsComponent IconModule IconModule IconModule->NotificationsModule PopModule PopModule PopModule->NotificationsModule NotificationsService NotificationsService NotificationsService->NotificationsModule

File

packages/ui/src/lib/notifications/notifications.module.ts

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { NotificationsComponent } from './notifications.component';
import { NotificationsService } from './notifications.service';
import { PopModule } from '../pop/pop.module';
import { ErrorComponent } from './error/error.component';
import { IconModule } from '../icon/icon.module';

@NgModule({
  declarations: [NotificationsComponent, ErrorComponent],
  imports: [CommonModule, PopModule, IconModule],
  exports: [NotificationsComponent, ErrorComponent],
  providers: [
    {
      provide: 'useDesktopNotifications',
      useValue: false,
    },
    NotificationsService,
  ],
})
export class NotificationsModule {}

result-matching ""

    No results matching ""