dependencies dependencies cluster_AppModule cluster_AppModule_declarations cluster_AppModule_providers cluster_AppModule_imports cluster_AppModule_bootstrap AppComponent AppComponent AppModule AppModule AppComponent->AppModule AppMainTitleComponent AppMainTitleComponent AppMainTitleComponent->AppModule AppNavigationComponent AppNavigationComponent AppNavigationComponent->AppModule DuplicatePaymentAlertComponent DuplicatePaymentAlertComponent DuplicatePaymentAlertComponent->AppModule ErrorScreenComponent ErrorScreenComponent ErrorScreenComponent->AppModule HomeComponent HomeComponent HomeComponent->AppModule LoginComponent LoginComponent LoginComponent->AppModule NotFoundComponent NotFoundComponent NotFoundComponent->AppModule PaymentInFlightExplainComponent PaymentInFlightExplainComponent PaymentInFlightExplainComponent->AppModule SuccessScreenComponent SuccessScreenComponent SuccessScreenComponent->AppModule VersionLabelComponent VersionLabelComponent VersionLabelComponent->AppModule AppComponent AppComponent AppModule->AppComponent LoaderModule LoaderModule LoaderModule->AppModule PaymentsModule PaymentsModule PaymentsModule->AppModule SendingMoneyModule SendingMoneyModule SendingMoneyModule->AppModule SharedModule SharedModule SharedModule->AppModule TemplatesModule TemplatesModule TemplatesModule->AppModule TimeoutModule TimeoutModule TimeoutModule->AppModule WindowTokenModule WindowTokenModule WindowTokenModule->AppModule AuthInterceptor AuthInterceptor AuthInterceptor->AppModule ClipboardService ClipboardService ClipboardService->AppModule
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import {  NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { appRoutes } from './app.routes';
import { AppMainTitleComponent } from './components/app-main-title/app-main-title.component';
import { AppNavigationComponent } from './components/app-navigation/app-navigation.component';
import { DuplicatePaymentAlertComponent } from './components/duplicate-payment-alert/duplicate-payment-alert.component';
import { ErrorScreenComponent } from './components/error-screen/error-screen.component';
import { HomeComponent } from './components/home/home.component';
import { LoaderModule } from './components/loader/loader.module';
import { LoginComponent } from './components/login/login.component';
import { NotFoundComponent } from './components/not-found/not-found.component';
import { PaymentsModule } from './components/payments/payments.module';
import { SendingMoneyModule } from './components/sending-money/sending-money.module';
import { PaymentInFlightExplainComponent } from './components/success-screen/payment-in-flight-explain';
import { SuccessScreenComponent } from './components/success-screen/success-screen.component';
import { TemplatesModule } from './components/templates/templates.module';
import { TimeoutModule } from './components/timeout/timeout.module';
import { VersionLabelComponent } from './components/version-label/version-label.component';
import { AuthInterceptor } from './providers/interceptors/auth.interceptor';
import { ClipboardService } from './providers/services/clipboard.service';
import { SharedModule } from './shared.module';
import { WindowTokenModule } from './window-token.module';

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

results matching ""

    No results matching ""