bullhorn/chomsky-ng2

View on GitHub
src/platform/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
// NG2
import { NgModule } from '@angular/core';
// APP
import { TranslatePipe } from './pipes/translate.pipe';
import { Translate } from './directives/translate.directive';

export * from './services/translate.service';

@NgModule({
    declarations: [TranslatePipe, Translate],
    exports: [TranslatePipe, Translate],
})
export class ChomskyModule { }