All files / src/app/shared shared.module.ts

100% Statements 14/14
100% Branches 0/0
100% Functions 1/1
100% Lines 11/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2791x 91x   91x 91x 91x 91x 91x 91x 91x 91x                             91x  
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
 
import { ApiModule } from './api/api.module';
import { ComponentsModule } from './components/components.module';
import { DataTableModule } from './datatable/datatable.module';
import { DirectivesModule } from './directives/directives.module';
import { PipesModule } from './pipes/pipes.module';
import { AuthGuardService } from './services/auth-guard.service';
import { AuthStorageService } from './services/auth-storage.service';
import { FormatterService } from './services/formatter.service';
 
@NgModule({
  imports: [
    CommonModule,
    PipesModule,
    ComponentsModule,
    DataTableModule,
    ApiModule,
    DirectivesModule
  ],
  declarations: [],
  exports: [ComponentsModule, PipesModule, DataTableModule, ApiModule, DirectivesModule],
  providers: [AuthStorageService, AuthGuardService, FormatterService]
})
export class SharedModule {}