You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
|
7 years ago
|
import { NgModule } from '@angular/core';
|
||
|
|
import { DateStringPipe } from './date-string/date-string';
|
||
|
|
import { FilterLangPipe } from './filter-lang/filter-lang';
|
||
|
|
@NgModule({
|
||
|
|
declarations: [DateStringPipe,
|
||
|
|
FilterLangPipe],
|
||
|
|
imports: [],
|
||
|
|
exports: [DateStringPipe,
|
||
|
|
FilterLangPipe]
|
||
|
|
})
|
||
|
|
export class PipesModule {}
|