dependencies dependencies cluster_AppModule cluster_AppModule_imports cluster_AppModule_bootstrap cluster_AppModule_providers cluster_AppModule_declarations AppComponent AppComponent AppModule AppModule AppComponent->AppModule AppComponent AppComponent AppModule->AppComponent AppRoutingModule AppRoutingModule AppRoutingModule->AppModule HomeModule HomeModule HomeModule->AppModule NoopInterceptor NoopInterceptor NoopInterceptor->AppModule TodoStore TodoStore TodoStore->AppModule

File

src/app/app.module.ts

Description

The bootstrapper module

Methods

Static forChild
forChild(config: any)

Use this method in your other (non root) modules to import the directive/pipe

Parameters :
Name Type Optional Default value
config any No {}
Static forRoot
forRoot(config: any)

Use this method in your root module

Parameters :
Name Type Optional Default value
config any No {}
import { BrowserModule } from '@angular/platform-browser';
import { NgModule, ModuleWithProviders } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';

import { HomeModule } from './home/';

import { AppComponent } from './app.component';

import { TodoStore } from './shared/services/todo.store';

/* Routing Module */
import { AppRoutingModule } from './app-routing.module';
import { HTTP_INTERCEPTORS } from '@angular/common/http';

import { NoopInterceptor } from './shared/interceptors/noopinterceptor.interceptor';
/**
 * The bootstrapper module
 */
@NgModule({
    declarations: [AppComponent],
    imports: [HomeModule, AppRoutingModule],
    providers: [
        TodoStore,
        {
            provide: HTTP_INTERCEPTORS,
            useClass: NoopInterceptor,
            multi: true
        },
        {
            provide: HTTP_INTERCEPTORS,
            useFactory: (languageService: GlobalLanguageService) =>
                new HttpConfigurationInterceptor(languageService),
            deps: [GlobalLanguageService]
        }
    ],
    bootstrap: [AppComponent]
})
export class AppModule {
    /**
     * Use this method in your root module
     */
    static forRoot(config: any = {}): ModuleWithProviders {}

    /**
     * Use this method in your other (non root) modules to import the directive/pipe
     */
    static forChild(config: any = {}): ModuleWithProviders {}
}

results matching ""

    No results matching ""