1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 2x 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 {} |