|
@@ -1,8 +1,11 @@
|
|
import { NgModule } from '@angular/core';
|
|
import { NgModule } from '@angular/core';
|
|
import { FriendlyNumberPipe } from './friendly-number/friendly-number';
|
|
import { FriendlyNumberPipe } from './friendly-number/friendly-number';
|
|
|
|
+import { DiffForHumansPipe } from './diff-for-humans/diff-for-humans';
|
|
@NgModule({
|
|
@NgModule({
|
|
- declarations: [FriendlyNumberPipe],
|
|
+ declarations: [FriendlyNumberPipe,
|
|
|
|
+ DiffForHumansPipe],
|
|
imports: [],
|
|
imports: [],
|
|
- exports: [FriendlyNumberPipe]
|
|
+ exports: [FriendlyNumberPipe,
|
|
|
|
+ DiffForHumansPipe]
|
|
})
|
|
})
|
|
export class PipesModule {}
|
|
export class PipesModule {}
|