All files / src/app/common mw.common.module.ts

100% Statements 27/27
100% Branches 0/0
100% Functions 2/2
100% Lines 24/24
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 541x 1x   1x 1x   1x 1x 1x   1x 1x 1x 1x     1x   1x 12x                                               1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
import { Component, NgModule, ModuleWithProviders, ModuleWithComponentFactories } from '@angular/core';
import { CommonModule } from '@angular/common';
 
import { ErrorBadgeComponent } from './badge/error-badge.component';
import { ToastrService } from './toastr/toastr.service';
 
import { ListLimiterComponent } from './list-limiter/list-limiter.component';
import { StyleWithLess } from './style-with-less.decorator/style-with-less';
import { Logger } from './logger/logger';
import {  } from './masked-trim/masked-trim';
import { formatAMPM } from './format-AMPM/format-AMPM';
import { SpinnerComponent } from './spinner/spinner.component';
import { UiActions } from './ui.actions/ui.actions';
import { ObjectShapeComparer } from './object-shape-comparer/object-shape-comparer';
 
declare var require;
const maskedTrim = require('./masked-trim/masked-trim');
 
export function loggerFactory() {
  return new Logger('MWB', '');
}
 
@NgModule({
  imports: [
    CommonModule,
  ],
  exports: [
    ErrorBadgeComponent,
    ListLimiterComponent,
    SpinnerComponent,
  ],
  declarations: [
    ErrorBadgeComponent,
    ListLimiterComponent,
    SpinnerComponent,
  ],
  providers: [
    ToastrService,
    { provide: Logger, useFactory: loggerFactory },
    ObjectShapeComparer,
    UiActions,
  ],
})
export class MigrationWorkBenchCommonModule {}
export { ToastrService } ;
export { ErrorBadgeComponent }
export { StyleWithLess }
export { Logger }
export { maskedTrim }
export { ListLimiterComponent }
export { formatAMPM }
export { UiActions }
export { SpinnerComponent }