All files ApolloModule.ts

100% Statements 9/9
100% Branches 0/0
100% Functions 1/1
100% Lines 6/6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 152x   2x 2x   2x 2x             2x  
import {NgModule} from '@angular/core';
 
import {Apollo} from './Apollo';
import {SelectPipe} from './SelectPipe';
 
export const PROVIDERS = [Apollo];
export const DECLARATIONS = [SelectPipe];
 
@NgModule({
  providers: PROVIDERS,
  declarations: DECLARATIONS,
  exports: DECLARATIONS,
})
export class ApolloModule {}