dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AppModule cluster_AppModule_declarations cluster_AppModule_imports cluster_AppModule_bootstrap cluster_AppModule_providers AppComponent AppComponent AppModule AppModule AppComponent->AppModule LoginComponent LoginComponent LoginComponent->AppModule HomeComponent HomeComponent HomeComponent->AppModule AppMainTitleComponent AppMainTitleComponent AppMainTitleComponent->AppModule AppNavigationComponent AppNavigationComponent AppNavigationComponent->AppModule CreatingSecretWordComponent CreatingSecretWordComponent CreatingSecretWordComponent->AppModule WhatIsSecretWordComponent WhatIsSecretWordComponent WhatIsSecretWordComponent->AppModule SecretWordReminderComponent SecretWordReminderComponent SecretWordReminderComponent->AppModule PaymentInFlightExplainComponent PaymentInFlightExplainComponent PaymentInFlightExplainComponent->AppModule SuccessScreenComponent SuccessScreenComponent SuccessScreenComponent->AppModule ErrorScreenComponent ErrorScreenComponent ErrorScreenComponent->AppModule NotFoundComponent NotFoundComponent NotFoundComponent->AppModule ClipboardDirective ClipboardDirective ClipboardDirective->AppModule DuplicatePaymentAlertComponent DuplicatePaymentAlertComponent DuplicatePaymentAlertComponent->AppModule AppComponent AppComponent AppModule->AppComponent WindowTokenModule WindowTokenModule WindowTokenModule->AppModule SharedModule SharedModule SharedModule->AppModule TimeoutModule TimeoutModule TimeoutModule->AppModule LoaderModule LoaderModule LoaderModule->AppModule RecipientsModule RecipientsModule RecipientsModule->AppModule SendingMoneyModule SendingMoneyModule SendingMoneyModule->AppModule PaymentsModule PaymentsModule PaymentsModule->AppModule appRoutes appRoutes appRoutes->AppModule AuthInterceptor AuthInterceptor AuthInterceptor->AppModule ClipboardService ClipboardService ClipboardService->AppModule SessionStore SessionStore SessionStore->AppModule AppState AppState AppState->AppModule
import { SessionStore } from './stores/session.store';
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';

import { AppMainTitleComponent } from './app-main-title';
import { AppNavigationComponent } from './app-navigation';
import { AppComponent } from './app.component';
import { appRoutes } from './app.routes';
import { SharedModule } from './shared.module';
import { CreatingSecretWordComponent, WhatIsSecretWordComponent } from './creating-secret-word';
import { ClipboardDirective, ClipboardService } from './directives/clipboard';
import { WindowTokenModule } from './directives/clipboard/window-token';
import { ErrorScreenComponent } from './error-screen';
import { LoaderModule } from './loader/loader.module';
import { LoginComponent } from './login/login.component';
import { NotFoundComponent } from './not-found';
import { PaymentsModule } from './payments/payments.module';
import { RecipientsModule } from './recipients/recipients.module';
import { SendingMoneyModule } from './sending-money/sending-money.module';
import { PaymentInFlightExplainComponent, SecretWordReminderComponent, SuccessScreenComponent } from './success-screen';
import { TimeoutModule } from './timeout';
import { AuthInterceptor } from './services/auth.interceptor';
import { HomeComponent } from './home';
import { AppState } from './stores/app-state.store';
import { DuplicatePaymentAlertComponent } from './duplicate-payment-alert/duplicate-payment-alert.component';

export function tokenGetter() {
  return;
}
@NgModule({
  bootstrap: [AppComponent],
  imports: [
    BrowserModule.withServerTransition({ appId: 'ng-cli-universal' }),
    HttpClientModule,
    WindowTokenModule,
    SharedModule,
    FormsModule,
    TimeoutModule,
    LoaderModule,
    RecipientsModule,
    SendingMoneyModule,
    PaymentsModule,
    appRoutes,
  ],
  declarations: [
    AppComponent,
    LoginComponent,
    HomeComponent,
    AppMainTitleComponent,
    AppNavigationComponent,
    CreatingSecretWordComponent,
    WhatIsSecretWordComponent,
    SecretWordReminderComponent,
    PaymentInFlightExplainComponent,
    SuccessScreenComponent,
    ErrorScreenComponent,
    NotFoundComponent,
    ClipboardDirective,
    DuplicatePaymentAlertComponent
  ],
  providers: [
    {
      provide: HTTP_INTERCEPTORS,
      useClass: AuthInterceptor,
      multi: true,
    },
    { provide: 'ORIGIN_URL', useValue: location.origin },
    ClipboardService,
    SessionStore,
    AppState,
  ],
})
export class AppModule {}

results matching ""

    No results matching ""